| 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 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", |
| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 "//ui/views:views_unittests", # TooltipControllerTest failures | 941 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 941 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 942 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 942 "//url:url_unittests", # PASSES 4/17/2015 | 943 "//url:url_unittests", # PASSES 4/17/2015 |
| 943 | 944 |
| 944 # TODO(GYP) nacl_integration | 945 # TODO(GYP) nacl_integration |
| 945 # TODO(GYP) telemetry_perf_unittests | 946 # TODO(GYP) telemetry_perf_unittests |
| 946 # TODO(GYP) telemetry_unittests | 947 # TODO(GYP) telemetry_unittests |
| 947 ] | 948 ] |
| 948 } | 949 } |
| 949 } | 950 } |
| OLD | NEW |