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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 } | 173 } |
174 | 174 |
175 if (cpu_arch == "x86" || cpu_arch == "x64") { | 175 if (cpu_arch == "x86" || cpu_arch == "x64") { |
176 # YASM is x86/x64 only. | 176 # YASM is x86/x64 only. |
177 deps += [ "//third_party/yasm($host_toolchain)" ] | 177 deps += [ "//third_party/yasm($host_toolchain)" ] |
178 } | 178 } |
179 | 179 |
180 if (is_android) { | 180 if (is_android) { |
181 deps += [ | 181 deps += [ |
182 "//base/android/linker:chromium_android_linker", | 182 "//base/android/linker:chromium_android_linker", |
| 183 "//build/android/gyp/test:hello_world", |
183 "//build/android/rezip", | 184 "//build/android/rezip", |
184 "//third_party/openmax_dl/dl", | 185 "//third_party/openmax_dl/dl", |
185 "//content/shell/android:content_shell_apk", | 186 "//content/shell/android:content_shell_apk", |
186 "//chrome/android:chrome_shell_apk", | 187 "//chrome/android:chrome_shell_apk", |
187 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", | 188 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", |
188 "//ui/android:ui_java", | 189 "//ui/android:ui_java", |
189 "//third_party/android_tools:android_gcm_java", | 190 "//third_party/android_tools:android_gcm_java", |
190 "//third_party/android_tools:uiautomator_java", | 191 "//third_party/android_tools:uiautomator_java", |
191 "//third_party/android_tools:android_support_v13_java", | 192 "//third_party/android_tools:android_support_v13_java", |
192 "//third_party/android_tools:android_support_v7_appcompat_java", | 193 "//third_party/android_tools:android_support_v7_appcompat_java", |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 "//ui/native_theme", | 379 "//ui/native_theme", |
379 "//ui/snapshot", | 380 "//ui/snapshot", |
380 "//ui/surface", | 381 "//ui/surface", |
381 "//ui/views", | 382 "//ui/views", |
382 "//ui/views/controls/webview", | 383 "//ui/views/controls/webview", |
383 "//ui/web_dialogs", | 384 "//ui/web_dialogs", |
384 "//ui/wm", | 385 "//ui/wm", |
385 ] | 386 ] |
386 } | 387 } |
387 } | 388 } |
OLD | NEW |