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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
609 | 609 |
610 if (!is_android && !is_ios) { | 610 if (!is_android && !is_ios) { |
611 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 611 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
612 } | 612 } |
613 | 613 |
614 if (is_linux && !is_chromeos) { | 614 if (is_linux && !is_chromeos) { |
615 # TODO(GYP): Figure out if any of these should be in gn_all | 615 # TODO(GYP): Figure out if any of these should be in gn_all |
616 # and figure out how cross-platform they are | 616 # and figure out how cross-platform they are |
617 deps += [ | 617 deps += [ |
618 ":gn_mojo_targets", | 618 ":gn_mojo_targets", |
619 "//blimp", | 619 "//blimp", |
Dirk Pranke
2015/10/01 00:14:03
weren't we going to delete the "//blimp" line, her
| |
620 "//blimp:blimp_tests", | |
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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
933 "//ui/views:views_unittests", # TooltipControllerTest failures | 934 "//ui/views:views_unittests", # TooltipControllerTest failures |
934 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 935 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
935 "//url:url_unittests", # PASSES 4/17/2015 | 936 "//url:url_unittests", # PASSES 4/17/2015 |
936 | 937 |
937 # TODO(GYP) nacl_integration | 938 # TODO(GYP) nacl_integration |
938 # TODO(GYP) telemetry_perf_unittests | 939 # TODO(GYP) telemetry_perf_unittests |
939 # TODO(GYP) telemetry_unittests | 940 # TODO(GYP) telemetry_unittests |
940 ] | 941 ] |
941 } | 942 } |
942 } | 943 } |
OLD | NEW |