| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//skia:skia_unittests", | 88 "//skia:skia_unittests", |
| 89 "//tools/metrics:metrics_metadata", | 89 "//tools/metrics:metrics_metadata", |
| 90 "//ui/base:ui_base_unittests", | 90 "//ui/base:ui_base_unittests", |
| 91 "//ui/gfx:gfx_unittests", | 91 "//ui/gfx:gfx_unittests", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 if (!is_ios && !is_android && !is_chromecast && !is_fuchsia) { | 95 if (!is_ios && !is_android && !is_chromecast && !is_fuchsia) { |
| 96 deps += [ | 96 deps += [ |
| 97 "//chrome", | 97 "//chrome", |
| 98 "//chrome/installer/zucchini:zucchini", |
| 99 "//chrome/installer/zucchini:zucchini_unittests", |
| 98 "//chrome/test:browser_tests", | 100 "//chrome/test:browser_tests", |
| 99 "//chrome/test:interactive_ui_tests", | 101 "//chrome/test:interactive_ui_tests", |
| 100 "//chrome/test:sync_integration_tests", | 102 "//chrome/test:sync_integration_tests", |
| 101 "//chrome/test/chromedriver:chromedriver_unittests", | 103 "//chrome/test/chromedriver:chromedriver_unittests", |
| 102 "//components/sync/tools:sync_client", | 104 "//components/sync/tools:sync_client", |
| 103 "//components/sync/tools:sync_listen_notifications", | 105 "//components/sync/tools:sync_listen_notifications", |
| 104 "//extensions:extensions_browsertests", | 106 "//extensions:extensions_browsertests", |
| 105 "//extensions:extensions_unittests", | 107 "//extensions:extensions_unittests", |
| 106 "//gpu/gles2_conform_support:gles2_conform_test", | 108 "//gpu/gles2_conform_support:gles2_conform_test", |
| 107 "//gpu/khronos_glcts_support:khronos_glcts_test", | 109 "//gpu/khronos_glcts_support:khronos_glcts_test", |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 assert(target_name != "") # Mark as used. | 1052 assert(target_name != "") # Mark as used. |
| 1051 sources = invoker.actual_sources | 1053 sources = invoker.actual_sources |
| 1052 assert( | 1054 assert( |
| 1053 sources == invoker.actual_sources, | 1055 sources == invoker.actual_sources, |
| 1054 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1056 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1055 } | 1057 } |
| 1056 | 1058 |
| 1057 assert_valid_out_dir("_unused") { | 1059 assert_valid_out_dir("_unused") { |
| 1058 actual_sources = [ "$root_build_dir/foo" ] | 1060 actual_sources = [ "$root_build_dir/foo" ] |
| 1059 } | 1061 } |
| OLD | NEW |