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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "//rlz:rlz_lib", | 122 "//rlz:rlz_lib", |
123 ] | 123 ] |
124 } | 124 } |
125 | 125 |
126 if (cpu_arch == "x86" || cpu_arch == "x64") { | 126 if (cpu_arch == "x86" || cpu_arch == "x64") { |
127 # YASM is x86/x64 only. | 127 # YASM is x86/x64 only. |
128 deps += [ "//third_party/yasm($host_toolchain)" ] | 128 deps += [ "//third_party/yasm($host_toolchain)" ] |
129 } | 129 } |
130 | 130 |
131 if (is_android) { | 131 if (is_android) { |
| 132 deps += [ |
| 133 "//ui/android:ui_java" |
| 134 ] |
| 135 |
132 deps -= [ | 136 deps -= [ |
133 "//cc", | 137 "//cc", |
134 "//chrome/browser/devtools", # Blocked on content. | 138 "//chrome/browser/devtools", # Blocked on content. |
135 "//chrome/browser/ui/views", # Blocked on content. | 139 "//chrome/browser/ui/views", # Blocked on content. |
136 "//chrome/common", # Blocked on content. | 140 "//chrome/common", # Blocked on content. |
137 "//chrome/plugin", # Blocked on content. | 141 "//chrome/plugin", # Blocked on content. |
138 "//chrome/renderer", # Blocked on content. | 142 "//chrome/renderer", # Blocked on content. |
139 "//chrome/utility", # Blocked on content. | 143 "//chrome/utility", # Blocked on content. |
140 "//content", | 144 "//content", |
141 "//extensions/common/api:extensions_api", | 145 "//extensions/common/api:extensions_api", |
(...skipping 22 matching lines...) Expand all Loading... |
164 ] | 168 ] |
165 } | 169 } |
166 | 170 |
167 if (use_ozone) { | 171 if (use_ozone) { |
168 deps += [ | 172 deps += [ |
169 "//ui/events/ozone:events_ozone", | 173 "//ui/events/ozone:events_ozone", |
170 "//ui/events/ozone:events_ozone_evdev", | 174 "//ui/events/ozone:events_ozone_evdev", |
171 ] | 175 ] |
172 } | 176 } |
173 } | 177 } |
OLD | NEW |