| 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", |
| 36 "//crypto", | 37 "//crypto", |
| 37 "//device/usb", | 38 "//device/usb", |
| 38 #"//extensions/common/api:extensions_api", | 39 #"//extensions/common/api:extensions_api", |
| 39 "//gin", | 40 "//gin", |
| 40 "//gpu/command_buffer/client", | 41 "//gpu/command_buffer/client", |
| 41 "//gpu/command_buffer/service", | 42 "//gpu/command_buffer/service", |
| 42 "//ipc", | 43 "//ipc", |
| 43 "//mojo", | 44 "//mojo", |
| 44 "//net", | 45 "//net", |
| 45 "//ppapi:ppapi_c", | 46 "//ppapi:ppapi_c", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 90 |
| 90 if (is_win) { | 91 if (is_win) { |
| 91 deps += [ | 92 deps += [ |
| 92 "//ui/metro_viewer", | 93 "//ui/metro_viewer", |
| 93 ] | 94 ] |
| 94 } | 95 } |
| 95 | 96 |
| 96 if (is_android) { | 97 if (is_android) { |
| 97 deps -= [ | 98 deps -= [ |
| 98 "//content/public/common", | 99 "//content/public/common", |
| 100 "//content/public/renderer", |
| 99 "//ppapi:ppapi_c", | 101 "//ppapi:ppapi_c", |
| 100 "//third_party/libusb", | 102 "//third_party/libusb", |
| 101 #"//third_party/WebKit/Source/platform", | 103 #"//third_party/WebKit/Source/platform", |
| 102 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 104 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
| 103 "//tools/gn", | 105 "//tools/gn", |
| 104 | 106 |
| 105 # This stuff all depends on ui/surface which requires some .class jni | 107 # This stuff all depends on ui/surface which requires some .class jni |
| 106 # generators (ui/gl/gl.gyp:surface_jni_headers). | 108 # generators (ui/gl/gl.gyp:surface_jni_headers). |
| 107 "//ui/gl", | 109 "//ui/gl", |
| 108 "//gpu/command_buffer/client", | 110 "//gpu/command_buffer/client", |
| 109 "//gpu/command_buffer/service", | 111 "//gpu/command_buffer/service", |
| 110 "//ui/surface", | 112 "//ui/surface", |
| 111 ] | 113 ] |
| 112 } | 114 } |
| 113 } | 115 } |
| OLD | NEW |