| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "//third_party/WebKit/Source/web:webkit_unit_tests", | 564 "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 565 ] | 565 ] |
| 566 } | 566 } |
| 567 | 567 |
| 568 if (is_win) { | 568 if (is_win) { |
| 569 deps += [ | 569 deps += [ |
| 570 "//base:pe_image_test", | 570 "//base:pe_image_test", |
| 571 "//chrome/installer/setup:setup_unittests", | 571 "//chrome/installer/setup:setup_unittests", |
| 572 "//chrome_elf:chrome_elf_unittests", | 572 "//chrome_elf:chrome_elf_unittests", |
| 573 "//chrome_elf:dll_hash_main", | 573 "//chrome_elf:dll_hash_main", |
| 574 "//components/crash/content/tools:crash_service", | 574 "//components/crash/tools:crash_service", |
| 575 "//components/wifi:wifi_test", | 575 "//components/wifi:wifi_test", |
| 576 "//net:quic_client", | 576 "//net:quic_client", |
| 577 "//net:quic_server", | 577 "//net:quic_server", |
| 578 "//sandbox/win:pocdll", | 578 "//sandbox/win:pocdll", |
| 579 "//sandbox/win:sandbox_poc", | 579 "//sandbox/win:sandbox_poc", |
| 580 "//sandbox/win:sbox_integration_tests", | 580 "//sandbox/win:sbox_integration_tests", |
| 581 "//sandbox/win:sbox_unittests", | 581 "//sandbox/win:sbox_unittests", |
| 582 "//sandbox/win:sbox_validation_tests", | 582 "//sandbox/win:sbox_validation_tests", |
| 583 "//testing/gtest:gtest_main", | 583 "//testing/gtest:gtest_main", |
| 584 "//third_party/codesighs:msmap2tsv", | 584 "//third_party/codesighs:msmap2tsv", |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 946 "//ui/views:views_unittests", # TooltipControllerTest failures | 946 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 947 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 947 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 948 "//url:url_unittests", # PASSES 4/17/2015 | 948 "//url:url_unittests", # PASSES 4/17/2015 |
| 949 | 949 |
| 950 # TODO(GYP) nacl_integration | 950 # TODO(GYP) nacl_integration |
| 951 # TODO(GYP) telemetry_perf_unittests | 951 # TODO(GYP) telemetry_perf_unittests |
| 952 # TODO(GYP) telemetry_unittests | 952 # TODO(GYP) telemetry_unittests |
| 953 ] | 953 ] |
| 954 } | 954 } |
| 955 } | 955 } |
| OLD | NEW |