| 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 "//components/constrained_window:unit_tests", | 664 "//components/constrained_window:unit_tests", |
| 665 "//components/metrics:serialization", | 665 "//components/metrics:serialization", |
| 666 "//components/password_manager/content/renderer:browser_tests", | 666 "//components/password_manager/content/renderer:browser_tests", |
| 667 "//components/rappor:unit_tests", | 667 "//components/rappor:unit_tests", |
| 668 "//components/sessions:unit_tests", | 668 "//components/sessions:unit_tests", |
| 669 "//media/blink:media_blink_unittests", | 669 "//media/blink:media_blink_unittests", |
| 670 "//media/cast:udp_proxy", | 670 "//media/cast:udp_proxy", |
| 671 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", | 671 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", |
| 672 "//storage/browser:dump_file_system", | 672 "//storage/browser:dump_file_system", |
| 673 "//testing/libfuzzer/fuzzers", | 673 "//testing/libfuzzer/fuzzers", |
| 674 "//testing/libfuzzer/fuzzers/nss", |
| 674 "//testing/libfuzzer/tests:libfuzzer_tests", | 675 "//testing/libfuzzer/tests:libfuzzer_tests", |
| 675 "//third_party/angle:libANGLE", | 676 "//third_party/angle:libANGLE", |
| 676 "//third_party/angle:libEGL", | 677 "//third_party/angle:libEGL", |
| 677 "//third_party/angle:libGLESv2", | 678 "//third_party/angle:libGLESv2", |
| 678 "//third_party/cld_2:cld_2_dynamic_data_tool", | 679 "//third_party/cld_2:cld_2_dynamic_data_tool", |
| 679 "//third_party/leveldatabase:leveldb_arena_test", | 680 "//third_party/leveldatabase:leveldb_arena_test", |
| 680 "//third_party/leveldatabase:leveldb_bloom_test", | 681 "//third_party/leveldatabase:leveldb_bloom_test", |
| 681 "//third_party/leveldatabase:leveldb_cache_test", | 682 "//third_party/leveldatabase:leveldb_cache_test", |
| 682 "//third_party/leveldatabase:leveldb_corruption_test", | 683 "//third_party/leveldatabase:leveldb_corruption_test", |
| 683 "//third_party/leveldatabase:leveldb_crc32c_test", | 684 "//third_party/leveldatabase:leveldb_crc32c_test", |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 ] | 891 ] |
| 891 | 892 |
| 892 if (target_cpu == "x86") { | 893 if (target_cpu == "x86") { |
| 893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 894 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 894 } | 895 } |
| 895 } else { | 896 } else { |
| 896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 897 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 897 } | 898 } |
| 898 } | 899 } |
| 899 } | 900 } |
| OLD | NEW |