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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 # TODO(GYP): Remove these when the components_unittests work. | 281 # TODO(GYP): Remove these when the components_unittests work. |
282 "//components/history/core/test:test", | 282 "//components/history/core/test:test", |
283 "//components/policy:policy_component_test_support", | 283 "//components/policy:policy_component_test_support", |
284 "//components/policy:test_support", | 284 "//components/policy:test_support", |
285 "//components/rappor:test_support", | 285 "//components/rappor:test_support", |
286 "//components/signin/core/browser:test_support", | 286 "//components/signin/core/browser:test_support", |
287 "//components/sync_driver:test_support", | 287 "//components/sync_driver:test_support", |
288 "//components/user_manager", | 288 "//components/user_manager", |
289 "//components/wallpaper", | 289 "//components/wallpaper", |
290 "//content/shell/android:content_shell_apk", | 290 "//content/shell/android:content_shell_apk", |
| 291 "//content/test:video_decode_accelerator_unittest", |
291 | 292 |
292 # TODO(GYP): Are these needed, or will they be pulled in automatically? | 293 # TODO(GYP): Are these needed, or will they be pulled in automatically? |
293 "//third_party/android_tools:android_gcm_java", | 294 "//third_party/android_tools:android_gcm_java", |
294 "//third_party/android_tools:android_support_v13_java", | 295 "//third_party/android_tools:android_support_v13_java", |
295 "//third_party/android_tools:android_support_v7_appcompat_java", | 296 "//third_party/android_tools:android_support_v7_appcompat_java", |
296 "//third_party/android_tools:android_support_v7_mediarouter_java", | 297 "//third_party/android_tools:android_support_v7_mediarouter_java", |
297 "//third_party/android_tools:uiautomator_java", | 298 "//third_party/android_tools:uiautomator_java", |
298 "//third_party/mesa", | 299 "//third_party/mesa", |
299 "//third_party/mockito:mockito_java", | 300 "//third_party/mockito:mockito_java", |
300 "//third_party/openmax_dl/dl", | 301 "//third_party/openmax_dl/dl", |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 if (target_cpu == "x86") { | 851 if (target_cpu == "x86") { |
851 deps += [ | 852 deps += [ |
852 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 853 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
853 ] | 854 ] |
854 } | 855 } |
855 } else { | 856 } else { |
856 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 857 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
857 } | 858 } |
858 } | 859 } |
859 } | 860 } |
OLD | NEW |