| 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 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 group("chromium_swarm_tests") { | 864 group("chromium_swarm_tests") { |
| 865 } | 865 } |
| 866 | 866 |
| 867 group("chromium_builder_perf") { | 867 group("chromium_builder_perf") { |
| 868 testonly = true | 868 testonly = true |
| 869 | 869 |
| 870 if (!is_ios && !is_android && !is_chromecast) { | 870 if (!is_ios && !is_android && !is_chromecast) { |
| 871 deps = [ | 871 deps = [ |
| 872 "//cc:cc_perftests", | 872 "//cc:cc_perftests", |
| 873 "//chrome/test:load_library_perf_tests", | 873 "//chrome/test:load_library_perf_tests", |
| 874 "//chrome/test:sync_performance_tests", | |
| 875 "//gpu:gpu_perftests", | 874 "//gpu:gpu_perftests", |
| 876 "//media:media_perftests", | 875 "//media:media_perftests", |
| 877 "//media/midi:midi_unittests", | |
| 878 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", | 876 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", |
| 879 ] | 877 ] |
| 880 | 878 |
| 881 if (!is_chromeos) { | 879 if (!is_chromeos) { |
| 882 deps += [ "//chrome/test:performance_browser_tests" ] | 880 deps += [ "//chrome/test:performance_browser_tests" ] |
| 883 } | 881 } |
| 884 if (is_linux && !is_chromeos) { | 882 if (is_linux && !is_chromeos) { |
| 885 if (is_official_build) { | 883 if (is_official_build) { |
| 886 # In GN builds, this is controlled by the 'linux_dump_symbols' | 884 # In GN builds, this is controlled by the 'linux_dump_symbols' |
| 887 # flag, which defaults to 1 for official builds. For now, | 885 # flag, which defaults to 1 for official builds. For now, |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 assert(target_name != "") # Mark as used. | 989 assert(target_name != "") # Mark as used. |
| 992 sources = invoker.actual_sources | 990 sources = invoker.actual_sources |
| 993 assert( | 991 assert( |
| 994 sources == invoker.actual_sources, | 992 sources == invoker.actual_sources, |
| 995 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 993 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 996 } | 994 } |
| 997 | 995 |
| 998 assert_valid_out_dir("_unused") { | 996 assert_valid_out_dir("_unused") { |
| 999 actual_sources = [ "$root_build_dir/foo" ] | 997 actual_sources = [ "$root_build_dir/foo" ] |
| 1000 } | 998 } |
| OLD | NEW |