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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 } | 176 } |
177 | 177 |
178 if (is_android) { | 178 if (is_android) { |
179 deps += [ | 179 deps += [ |
180 "//base/android/linker:chromium_android_linker", | 180 "//base/android/linker:chromium_android_linker", |
181 "//build/android/gyp/test:hello_world", | 181 "//build/android/gyp/test:hello_world", |
182 "//build/android/rezip", | 182 "//build/android/rezip", |
183 "//third_party/openmax_dl/dl", | 183 "//third_party/openmax_dl/dl", |
184 "//content/shell/android:content_shell_apk", | 184 "//content/shell/android:content_shell_apk", |
185 "//chrome/android:chrome_shell_apk", | 185 "//chrome/android:chrome_shell_apk", |
| 186 "//chrome/test:test_support_unit", |
186 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", | 187 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", |
187 "//ui/android:ui_java", | 188 "//ui/android:ui_java", |
188 "//third_party/android_tools:android_gcm_java", | 189 "//third_party/android_tools:android_gcm_java", |
189 "//third_party/android_tools:uiautomator_java", | 190 "//third_party/android_tools:uiautomator_java", |
190 "//third_party/android_tools:android_support_v13_java", | 191 "//third_party/android_tools:android_support_v13_java", |
191 "//third_party/android_tools:android_support_v7_appcompat_java", | 192 "//third_party/android_tools:android_support_v7_appcompat_java", |
192 "//third_party/android_tools:android_support_v7_mediarouter_java", | 193 "//third_party/android_tools:android_support_v7_mediarouter_java", |
193 ] | 194 ] |
194 | 195 |
195 if (has_chrome_android_internal) { | 196 if (has_chrome_android_internal) { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 "//ui/native_theme", | 354 "//ui/native_theme", |
354 "//ui/snapshot", | 355 "//ui/snapshot", |
355 "//ui/surface", | 356 "//ui/surface", |
356 "//ui/views", | 357 "//ui/views", |
357 "//ui/views/controls/webview", | 358 "//ui/views/controls/webview", |
358 "//ui/web_dialogs", | 359 "//ui/web_dialogs", |
359 "//ui/wm", | 360 "//ui/wm", |
360 ] | 361 ] |
361 } | 362 } |
362 } | 363 } |
OLD | NEW |