| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 if (!is_ios && !is_android && !is_chromecast) { | 139 if (!is_ios && !is_android && !is_chromecast) { |
| 140 deps += [ | 140 deps += [ |
| 141 "//chrome", | 141 "//chrome", |
| 142 "//chrome/test:browser_tests", | 142 "//chrome/test:browser_tests", |
| 143 "//chrome/test:interactive_ui_tests", | 143 "//chrome/test:interactive_ui_tests", |
| 144 "//chrome/test:sync_integration_tests", | 144 "//chrome/test:sync_integration_tests", |
| 145 "//chrome/test/chromedriver:chromedriver_unittests", | 145 "//chrome/test/chromedriver:chromedriver_unittests", |
| 146 "//extensions:extensions_browsertests", | 146 "//extensions:extensions_browsertests", |
| 147 "//extensions:extensions_unittests", | 147 "//extensions:extensions_unittests", |
| 148 "//gpu/gles2_conform_support:gles2_conform_test", | 148 "//gpu/gles2_conform_support:gles2_conform_test", |
| 149 "//gpu/khronos_glcts_support:khronos_glcts_test", |
| 149 "//jingle:jingle_unittests", | 150 "//jingle:jingle_unittests", |
| 150 "//net:hpack_example_generator", | 151 "//net:hpack_example_generator", |
| 151 "//net:hpack_fuzz_mutator", | 152 "//net:hpack_fuzz_mutator", |
| 152 "//net:hpack_fuzz_wrapper", | 153 "//net:hpack_fuzz_wrapper", |
| 153 "//ppapi:ppapi_unittests", | 154 "//ppapi:ppapi_unittests", |
| 154 "//ppapi/examples/2d", | 155 "//ppapi/examples/2d", |
| 155 "//ppapi/examples/audio", | 156 "//ppapi/examples/audio", |
| 156 "//ppapi/examples/audio_input", | 157 "//ppapi/examples/audio_input", |
| 157 "//ppapi/examples/compositor", | 158 "//ppapi/examples/compositor", |
| 158 "//ppapi/examples/crxfs", | 159 "//ppapi/examples/crxfs", |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 assert(target_name != "") # Mark as used. | 945 assert(target_name != "") # Mark as used. |
| 945 sources = invoker.actual_sources | 946 sources = invoker.actual_sources |
| 946 assert( | 947 assert( |
| 947 sources == invoker.actual_sources, | 948 sources == invoker.actual_sources, |
| 948 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 949 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 949 } | 950 } |
| 950 | 951 |
| 951 assert_valid_out_dir("_unused") { | 952 assert_valid_out_dir("_unused") { |
| 952 actual_sources = [ "$root_build_dir/foo" ] | 953 actual_sources = [ "$root_build_dir/foo" ] |
| 953 } | 954 } |
| OLD | NEW |