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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
610 | 610 |
611 if (!is_android && !is_ios) { | 611 if (!is_android && !is_ios) { |
612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
613 } | 613 } |
614 | 614 |
615 if (is_linux && !is_chromeos) { | 615 if (is_linux && !is_chromeos) { |
616 # TODO(GYP): Figure out if any of these should be in gn_all | 616 # TODO(GYP): Figure out if any of these should be in gn_all |
617 # and figure out how cross-platform they are | 617 # and figure out how cross-platform they are |
618 deps += [ | 618 deps += [ |
619 ":gn_mojo_targets", | 619 ":gn_mojo_targets", |
620 "//blimp:unit_tests", | |
nyquist
2015/09/10 00:18:48
Could you add this to:
//testing/buildbot/chromium
Kevin M
2015/09/10 18:11:17
Done
From what I can tell, I can only add test ex
| |
620 "//chrome/browser/resources:extension_resource_demo", | 621 "//chrome/browser/resources:extension_resource_demo", |
621 "//chrome/installer/util:strings", | 622 "//chrome/installer/util:strings", |
622 "//chrome:main_dll", | 623 "//chrome:main_dll", |
623 "//chrome/test:load_library_perf_tests", | 624 "//chrome/test:load_library_perf_tests", |
624 "//chrome/tools/convert_dict", | 625 "//chrome/tools/convert_dict", |
625 "//components/constrained_window:unit_tests", | 626 "//components/constrained_window:unit_tests", |
626 "//components/enhanced_bookmarks:test_support", | 627 "//components/enhanced_bookmarks:test_support", |
627 "//components/metrics:serialization", | 628 "//components/metrics:serialization", |
628 "//components/password_manager/content/renderer:browser_tests", | 629 "//components/password_manager/content/renderer:browser_tests", |
629 "//components/rappor:unit_tests", | 630 "//components/rappor:unit_tests", |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
936 "//ui/views:views_unittests", # TooltipControllerTest failures | 937 "//ui/views:views_unittests", # TooltipControllerTest failures |
937 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 938 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
938 "//url:url_unittests", # PASSES 4/17/2015 | 939 "//url:url_unittests", # PASSES 4/17/2015 |
939 | 940 |
940 # TODO(GYP) nacl_integration | 941 # TODO(GYP) nacl_integration |
941 # TODO(GYP) telemetry_perf_unittests | 942 # TODO(GYP) telemetry_perf_unittests |
942 # TODO(GYP) telemetry_unittests | 943 # TODO(GYP) telemetry_unittests |
943 ] | 944 ] |
944 } | 945 } |
945 } | 946 } |
OLD | NEW |