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 12 matching lines...) Expand all Loading... |
23 "//components/metrics", | 23 "//components/metrics", |
24 "//components/navigation_metrics", | 24 "//components/navigation_metrics", |
25 "//components/onc", | 25 "//components/onc", |
26 "//components/os_crypt", | 26 "//components/os_crypt", |
27 "//components/startup_metric_utils", | 27 "//components/startup_metric_utils", |
28 "//components/resources:components_resources", | 28 "//components/resources:components_resources", |
29 "//components/tracing", | 29 "//components/tracing", |
30 "//components/translate:translate_core_browser", | 30 "//components/translate:translate_core_browser", |
31 "//components/translate:translate_core_common", | 31 "//components/translate:translate_core_common", |
32 "//components/url_matcher", | 32 "//components/url_matcher", |
| 33 "//content/public/common", |
33 "//crypto", | 34 "//crypto", |
34 "//device/usb", | 35 "//device/usb", |
35 #"//extensions/common/api:extensions_api", | 36 #"//extensions/common/api:extensions_api", |
36 "//gpu/command_buffer/client", | 37 "//gpu/command_buffer/client", |
37 "//gpu/command_buffer/service", | 38 "//gpu/command_buffer/service", |
38 "//ipc", | 39 "//ipc", |
39 "//mojo", | 40 "//mojo", |
40 "//net", | 41 "//net", |
41 #"//sdch", | 42 #"//sdch", |
42 "//skia", | 43 "//skia", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 77 |
77 if (is_linux) { | 78 if (is_linux) { |
78 deps += [ | 79 deps += [ |
79 "//third_party/freetype2", | 80 "//third_party/freetype2", |
80 ] | 81 ] |
81 } | 82 } |
82 | 83 |
83 if (is_android) { | 84 if (is_android) { |
84 deps -= [ | 85 deps -= [ |
85 "//components/os_crypt", | 86 "//components/os_crypt", |
| 87 "//content/public/common", |
86 "//crypto", | 88 "//crypto", |
87 "//gpu/command_buffer/client", # Needs Skia. | 89 "//gpu/command_buffer/client", # Needs Skia. |
88 "//gpu/command_buffer/service", | 90 "//gpu/command_buffer/service", |
89 "//net", | 91 "//net", |
90 "//third_party/libusb", | 92 "//third_party/libusb", |
91 # Should work, but staging this landing for Android separately. | 93 # Should work, but staging this landing for Android separately. |
92 "//third_party/protobuf:protobuf_lite", | 94 "//third_party/protobuf:protobuf_lite", |
93 #"//third_party/WebKit/Source/platform", | 95 #"//third_party/WebKit/Source/platform", |
94 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 96 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
95 "//tools/gn", | 97 "//tools/gn", |
96 | 98 |
97 # This UI stuff is blocked on Skia. | 99 # This UI stuff is blocked on Skia. |
98 "//ui/accessibility", | 100 "//ui/accessibility", |
99 "//ui/base:ui_base", | 101 "//ui/base:ui_base", |
100 "//ui/events", | 102 "//ui/events", |
101 "//ui/gfx", | 103 "//ui/gfx", |
102 "//ui/surface", | 104 "//ui/surface", |
103 ] | 105 ] |
104 } | 106 } |
105 } | 107 } |
OLD | NEW |