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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 } | 170 } |
171 | 171 |
172 if (cpu_arch == "x86" || cpu_arch == "x64") { | 172 if (cpu_arch == "x86" || cpu_arch == "x64") { |
173 # YASM is x86/x64 only. | 173 # YASM is x86/x64 only. |
174 deps += [ "//third_party/yasm($host_toolchain)" ] | 174 deps += [ "//third_party/yasm($host_toolchain)" ] |
175 } | 175 } |
176 | 176 |
177 if (is_android) { | 177 if (is_android) { |
178 deps += [ | 178 deps += [ |
179 "//base/android/linker:chromium_android_linker", | 179 "//base/android/linker:chromium_android_linker", |
| 180 "//build/android/gyp/test:hello_world", |
180 "//build/android/rezip", | 181 "//build/android/rezip", |
181 "//third_party/openmax_dl/dl", | 182 "//third_party/openmax_dl/dl", |
182 "//content/shell/android:content_shell_apk", | 183 "//content/shell/android:content_shell_apk", |
183 "//chrome/android:chrome_shell_apk", | 184 "//chrome/android:chrome_shell_apk", |
184 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", | 185 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", |
185 "//ui/android:ui_java", | 186 "//ui/android:ui_java", |
186 "//third_party/android_tools:android_gcm_java", | 187 "//third_party/android_tools:android_gcm_java", |
187 "//third_party/android_tools:uiautomator_java", | 188 "//third_party/android_tools:uiautomator_java", |
188 "//third_party/android_tools:android_support_v13_java", | 189 "//third_party/android_tools:android_support_v13_java", |
189 "//third_party/android_tools:android_support_v7_appcompat_java", | 190 "//third_party/android_tools:android_support_v7_appcompat_java", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 ] | 249 ] |
249 } | 250 } |
250 | 251 |
251 # Non-mobile builds. | 252 # Non-mobile builds. |
252 if (!is_android && !is_ios) { | 253 if (!is_android && !is_ios) { |
253 deps += [ | 254 deps += [ |
254 "//device/usb", | 255 "//device/usb", |
255 ] | 256 ] |
256 } | 257 } |
257 } | 258 } |
OLD | NEW |