OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 "//components/onc", | 26 "//components/onc", |
27 "//components/os_crypt", | 27 "//components/os_crypt", |
28 "//components/query_parser", | 28 "//components/query_parser", |
29 "//components/resources:components_resources", | 29 "//components/resources:components_resources", |
30 "//components/startup_metric_utils", | 30 "//components/startup_metric_utils", |
31 "//components/tracing", | 31 "//components/tracing", |
32 "//components/translate:translate_core_browser", | 32 "//components/translate:translate_core_browser", |
33 "//components/translate:translate_core_common", | 33 "//components/translate:translate_core_common", |
34 "//components/url_matcher", | 34 "//components/url_matcher", |
35 "//content/public/common", | 35 "//content/public/common", |
36 "//content/public/renderer", | |
37 "//crypto", | 36 "//crypto", |
38 "//device/usb", | 37 "//device/usb", |
39 #"//extensions/common/api:extensions_api", | 38 #"//extensions/common/api:extensions_api", |
40 "//gin", | 39 "//gin", |
41 "//gpu/command_buffer/client", | 40 "//gpu/command_buffer/client", |
42 "//gpu/command_buffer/service", | 41 "//gpu/command_buffer/service", |
43 "//ipc", | 42 "//ipc", |
44 "//mojo", | 43 "//mojo", |
45 "//net", | 44 "//net", |
46 "//ppapi:ppapi_c", | 45 "//ppapi:ppapi_c", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 89 |
91 if (is_win) { | 90 if (is_win) { |
92 deps += [ | 91 deps += [ |
93 "//ui/metro_viewer", | 92 "//ui/metro_viewer", |
94 ] | 93 ] |
95 } | 94 } |
96 | 95 |
97 if (is_android) { | 96 if (is_android) { |
98 deps -= [ | 97 deps -= [ |
99 "//content/public/common", | 98 "//content/public/common", |
100 "//content/public/renderer", | |
101 "//ppapi:ppapi_c", | 99 "//ppapi:ppapi_c", |
102 "//third_party/libusb", | 100 "//third_party/libusb", |
103 #"//third_party/WebKit/Source/platform", | 101 #"//third_party/WebKit/Source/platform", |
104 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 102 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
105 "//tools/gn", | 103 "//tools/gn", |
106 | 104 |
107 # This stuff all depends on ui/surface which requires some .class jni | 105 # This stuff all depends on ui/surface which requires some .class jni |
108 # generators (ui/gl/gl.gyp:surface_jni_headers). | 106 # generators (ui/gl/gl.gyp:surface_jni_headers). |
109 "//ui/gl", | 107 "//ui/gl", |
110 "//gpu/command_buffer/client", | 108 "//gpu/command_buffer/client", |
111 "//gpu/command_buffer/service", | 109 "//gpu/command_buffer/service", |
112 "//ui/surface", | 110 "//ui/surface", |
113 ] | 111 ] |
114 } | 112 } |
115 } | 113 } |
OLD | NEW |