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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 } | 751 } |
752 } | 752 } |
753 | 753 |
754 group("chrome_official_builder") { | 754 group("chrome_official_builder") { |
755 testonly = true | 755 testonly = true |
756 | 756 |
757 deps = [ | 757 deps = [ |
758 ":chrome_official_builder_no_unittests", | 758 ":chrome_official_builder_no_unittests", |
759 "//base:base_unittests", | 759 "//base:base_unittests", |
760 "//chrome/test:browser_tests", | 760 "//chrome/test:browser_tests", |
761 "//chrome/test:sync_integration_tests", | |
762 "//ipc:ipc_tests", | 761 "//ipc:ipc_tests", |
763 "//media:media_unittests", | 762 "//media:media_unittests", |
764 "//media/midi:midi_unittests", | 763 "//media/midi:midi_unittests", |
765 "//net:net_unittests", | 764 "//net:net_unittests", |
766 "//printing:printing_unittests", | 765 "//printing:printing_unittests", |
767 "//sql:sql_unittests", | 766 "//sql:sql_unittests", |
768 "//ui/base:ui_base_unittests", | 767 "//ui/base:ui_base_unittests", |
769 "//ui/gfx:gfx_unittests", | 768 "//ui/gfx:gfx_unittests", |
770 "//ui/touch_selection:ui_touch_selection_unittests", | 769 "//ui/touch_selection:ui_touch_selection_unittests", |
771 "//ui/views:views_unittests", | 770 "//ui/views:views_unittests", |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 assert(target_name != "") # Mark as used. | 1067 assert(target_name != "") # Mark as used. |
1069 sources = invoker.actual_sources | 1068 sources = invoker.actual_sources |
1070 assert( | 1069 assert( |
1071 sources == invoker.actual_sources, | 1070 sources == invoker.actual_sources, |
1072 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1071 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1073 } | 1072 } |
1074 | 1073 |
1075 assert_valid_out_dir("_unused") { | 1074 assert_valid_out_dir("_unused") { |
1076 actual_sources = [ "$root_build_dir/foo" ] | 1075 actual_sources = [ "$root_build_dir/foo" ] |
1077 } | 1076 } |
OLD | NEW |