| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//rlz:rlz_lib", | 133 "//rlz:rlz_lib", |
| 134 ] | 134 ] |
| 135 } | 135 } |
| 136 | 136 |
| 137 if (cpu_arch == "x86" || cpu_arch == "x64") { | 137 if (cpu_arch == "x86" || cpu_arch == "x64") { |
| 138 # YASM is x86/x64 only. | 138 # YASM is x86/x64 only. |
| 139 deps += [ "//third_party/yasm($host_toolchain)" ] | 139 deps += [ "//third_party/yasm($host_toolchain)" ] |
| 140 } | 140 } |
| 141 | 141 |
| 142 if (is_android) { | 142 if (is_android) { |
| 143 deps += [ |
| 144 "//ui/android:ui_java" |
| 145 ] |
| 146 |
| 143 deps -= [ | 147 deps -= [ |
| 144 "//cc", | 148 "//cc", |
| 145 "//chrome/browser", # Blocked on content. | 149 "//chrome/browser", # Blocked on content. |
| 146 "//chrome/browser/devtools", # Blocked on content. | 150 "//chrome/browser/devtools", # Blocked on content. |
| 147 "//chrome/browser/ui", # Blocked on content. | 151 "//chrome/browser/ui", # Blocked on content. |
| 148 "//chrome/browser/ui/views", # Blocked on content. | 152 "//chrome/browser/ui/views", # Blocked on content. |
| 149 "//chrome/common", # Blocked on content. | 153 "//chrome/common", # Blocked on content. |
| 150 "//chrome/plugin", # Blocked on content. | 154 "//chrome/plugin", # Blocked on content. |
| 151 "//chrome/renderer", # Blocked on content. | 155 "//chrome/renderer", # Blocked on content. |
| 152 "//chrome/service", # Blocked on content. | 156 "//chrome/service", # Blocked on content. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 183 ] | 187 ] |
| 184 } | 188 } |
| 185 | 189 |
| 186 if (use_ozone) { | 190 if (use_ozone) { |
| 187 deps += [ | 191 deps += [ |
| 188 "//ui/events/ozone:events_ozone", | 192 "//ui/events/ozone:events_ozone", |
| 189 "//ui/events/ozone:events_ozone_evdev", | 193 "//ui/events/ozone:events_ozone_evdev", |
| 190 ] | 194 ] |
| 191 } | 195 } |
| 192 } | 196 } |
| OLD | NEW |