| 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", |
| 163 "//third_party/android_tools:android_gcm_java", |
| 164 "//third_party/android_tools:uiautomator_java", |
| 165 "//third_party/android_tools:android_support_v13_java", |
| 166 "//third_party/android_tools:android_support_v7_appcompat_java", |
| 167 "//third_party/android_tools:android_support_v7_mediarouter_java", |
| 162 ] | 168 ] |
| 163 | 169 |
| 164 deps -= [ | 170 deps -= [ |
| 165 "//apps", # Needs testing. | 171 "//apps", # Needs testing. |
| 166 "//cc/blink", # Blocked on blink | 172 "//cc/blink", # Blocked on blink |
| 167 "//chrome/browser", # Blocked on content. | 173 "//chrome/browser", # Blocked on content. |
| 168 "//chrome/browser/devtools", # Blocked on content. | 174 "//chrome/browser/devtools", # Blocked on content. |
| 169 "//chrome/browser/ui", # Blocked on content. | 175 "//chrome/browser/ui", # Blocked on content. |
| 170 "//chrome/browser/ui/views", # Blocked on content. | 176 "//chrome/browser/ui/views", # Blocked on content. |
| 171 "//chrome/common", # Blocked on content. | 177 "//chrome/common", # Blocked on content. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 ] | 223 ] |
| 218 } | 224 } |
| 219 | 225 |
| 220 if (use_ozone) { | 226 if (use_ozone) { |
| 221 deps += [ | 227 deps += [ |
| 222 "//ui/ozone", | 228 "//ui/ozone", |
| 223 "//ui/ozone/demo", | 229 "//ui/ozone/demo", |
| 224 ] | 230 ] |
| 225 } | 231 } |
| 226 } | 232 } |
| OLD | NEW |