forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
2,220 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Defines the Chromium style for automatic reformatting. | ||
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
BasedOnStyle: Chromium | ||
# This defaults to 'Auto'. Explicitly set it for a while, so that | ||
# 'vector<vector<int> >' in existing files gets formatted to | ||
# 'vector<vector<int>>'. ('Auto' means that clang-format will only use | ||
# 'int>>' if the file already contains at least one such instance.) | ||
Standard: Cpp11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## This page intentionally left blank. ## | ||
# | ||
# Workaround for VS2013 automatically creating .gitattributes files with | ||
# default settings that we don't want. | ||
# See also: | ||
# http://connect.microsoft.com/VisualStudio/feedback/details/804948/inappropriately-creates-gitattributes-file | ||
# http://crbug.com/342064 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# commonly generated files | ||
*.pyc | ||
*~ | ||
.*.sw? | ||
.DS_Store | ||
.classpath | ||
.cproject | ||
.gdb_history | ||
.gdbinit | ||
.landmines | ||
.project | ||
.pub | ||
.pydevproject | ||
.checkstyle | ||
cscope.* | ||
Session.vim | ||
tags | ||
Thumbs.db | ||
v8.log | ||
/build/util/LASTCHANGE* | ||
|
||
# directories pulled in via deps or hooks | ||
/build/linux/bin/eu-strip | ||
/buildtools/ | ||
/dart/ | ||
/dart-pub-cache/ | ||
/native_client/ | ||
/out/ | ||
/out_*/ | ||
/sdch/open-vcdiff/ | ||
/testing/gmock/ | ||
/testing/gtest/ | ||
/third_party/android_tools/ | ||
/third_party/angle/ | ||
/third_party/appurify-python/ | ||
/third_party/boringssl/src/ | ||
/third_party/brotli/src/ | ||
/third_party/colorama/src/ | ||
/third_party/dart-sdk/ | ||
/third_party/dart-pkg/archive | ||
/third_party/dart-pkg/args | ||
/third_party/dart-pkg/box2d | ||
/third_party/dart-pkg/cassowary | ||
/third_party/dart-pkg/collection | ||
/third_party/dart-pkg/crypto | ||
/third_party/dart-pkg/newton | ||
/third_party/dart-pkg/path | ||
/third_party/dart-pkg/quiver | ||
/third_party/dart-pkg/source_span | ||
/third_party/dart-pkg/string_scanner | ||
/third_party/dart-pkg/vector_math | ||
/third_party/dart-pkg/vector_math | ||
/third_party/dart-pkg/yaml | ||
/third_party/dejavu-fonts-ttf-2.34/ttf/*.ttf | ||
/third_party/freetype-android/src | ||
/third_party/go/tool/ | ||
/third_party/icu/ | ||
/third_party/jsr-305/src/ | ||
/third_party/libc++/trunk/ | ||
/third_party/libc++abi/trunk/ | ||
/third_party/libjpeg_turbo/ | ||
/third_party/llvm/ | ||
/third_party/llvm-build/ | ||
/third_party/junit/src/ | ||
/third_party/mesa/src/ | ||
/third_party/mockito/src/ | ||
/third_party/pdfium/ | ||
/third_party/pywebsocket/src/ | ||
/third_party/requests/src/ | ||
/third_party/robolectric/src/ | ||
/third_party/skia/ | ||
/third_party/smhasher/src/ | ||
/third_party/yasm/binaries/ | ||
/third_party/yasm/source/patched-yasm/ | ||
/tools/grit/ | ||
/v8/ | ||
|
||
# dart packages directories and related. | ||
/mojo/dart/apptest/packages | ||
/mojo/dart/mojo_services/packages | ||
/mojo/dart/mojo_services/pubspec.lock | ||
/mojo/dart/mojom/bin/packages | ||
/mojo/dart/mojom/packages | ||
/mojo/dart/mojom/test/packages | ||
/sky/examples/hello_world/packages | ||
/sky/examples/stocks/packages | ||
/sky/sdk/packages/mojo/packages | ||
/sky/sdk/packages/mojo/pubspec.lock | ||
/sky/sdk/packages/sky/packages | ||
/sky/sdk/packages/sky/pubspec.lock | ||
|
||
# sky tools | ||
/sky/tools/skygo/linux64/sky_server | ||
/sky/tools/skygo/mac/sky_server | ||
|
||
# downloaded keyboard_native resources. | ||
/services/keyboard_native/res/*.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This file is used by the experimental meta-buildsystem in src/tools/gn to | ||
# find the root of the source tree and to set startup options. | ||
|
||
# The location of the build configuration file. | ||
buildconfig = "//build/config/BUILDCONFIG.gn" | ||
|
||
# The secondary source root is a parallel directory tree where | ||
# GN build files are placed when they can not be placed directly | ||
# in the source tree, e.g. for third party source trees. | ||
secondary_source = "//build/secondary/" | ||
|
||
# The set of targets known to pass 'gn check'. When all targets pass, remove | ||
# this. | ||
check_targets = [ | ||
"//crypto/*", | ||
"//dart/*", | ||
"//mojo/*", | ||
"//mojom/*", | ||
"//skia/*", | ||
"//sky/*", | ||
"//ui/*", | ||
"//url/*", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
# This target will be built if no target is specified when invoking ninja. | ||
group("default") { | ||
testonly = true | ||
|
||
deps = [ | ||
"//sky", | ||
"//services/sky", | ||
] | ||
} |
Oops, something went wrong.