| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 ] | 151 ] |
| 152 } | 152 } |
| 153 | 153 |
| 154 if (cpu_arch == "x86" || cpu_arch == "x64") { | 154 if (cpu_arch == "x86" || cpu_arch == "x64") { |
| 155 # YASM is x86/x64 only. | 155 # YASM is x86/x64 only. |
| 156 deps += [ "//third_party/yasm($host_toolchain)" ] | 156 deps += [ "//third_party/yasm($host_toolchain)" ] |
| 157 } | 157 } |
| 158 | 158 |
| 159 if (is_android) { | 159 if (is_android) { |
| 160 deps += [ | 160 deps += [ |
| 161 "//ui/android:ui_java" | 161 "//ui/android:ui_java", |
| 162 "//third_party/guava:guava_javalib", |
| 162 ] | 163 ] |
| 163 | 164 |
| 164 deps -= [ | 165 deps -= [ |
| 165 "//cc", | 166 "//cc", |
| 166 "//chrome/browser", # Blocked on content. | 167 "//chrome/browser", # Blocked on content. |
| 167 "//chrome/browser/devtools", # Blocked on content. | 168 "//chrome/browser/devtools", # Blocked on content. |
| 168 "//chrome/browser/ui", # Blocked on content. | 169 "//chrome/browser/ui", # Blocked on content. |
| 169 "//chrome/browser/ui/views", # Blocked on content. | 170 "//chrome/browser/ui/views", # Blocked on content. |
| 170 "//chrome/common", # Blocked on content. | 171 "//chrome/common", # Blocked on content. |
| 171 "//chrome/plugin", # Blocked on content. | 172 "//chrome/plugin", # Blocked on content. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 ] | 218 ] |
| 218 } | 219 } |
| 219 | 220 |
| 220 if (use_ozone) { | 221 if (use_ozone) { |
| 221 deps += [ | 222 deps += [ |
| 222 "//ui/ozone", | 223 "//ui/ozone", |
| 223 "//ui/ozone/demo", | 224 "//ui/ozone/demo", |
| 224 ] | 225 ] |
| 225 } | 226 } |
| 226 } | 227 } |
| OLD | NEW |