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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 | 721 |
722 group("gn_only") { | 722 group("gn_only") { |
723 testonly = true | 723 testonly = true |
724 | 724 |
725 deps = [] | 725 deps = [] |
726 | 726 |
727 if (!is_ios) { | 727 if (!is_ios) { |
728 deps += [ | 728 deps += [ |
729 "//media/mojo:media_mojo_unittests", | 729 "//media/mojo:media_mojo_unittests", |
730 "//mojo/common:mojo_common_perftests", | 730 "//mojo/common:mojo_common_perftests", |
| 731 "//services:service_unittests", |
731 "//services/video_capture:video_capture_unittests", | 732 "//services/video_capture:video_capture_unittests", |
732 ] | 733 ] |
733 } | 734 } |
734 | 735 |
735 if (!is_android && !is_ios) { | 736 if (!is_android && !is_ios) { |
736 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] | 737 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] |
737 } | 738 } |
738 | 739 |
739 if (!is_android && !is_ios && !is_chromeos) { | 740 if (!is_android && !is_ios && !is_chromeos) { |
740 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 741 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 assert(target_name != "") # Mark as used. | 1089 assert(target_name != "") # Mark as used. |
1089 sources = invoker.actual_sources | 1090 sources = invoker.actual_sources |
1090 assert( | 1091 assert( |
1091 sources == invoker.actual_sources, | 1092 sources == invoker.actual_sources, |
1092 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1093 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1093 } | 1094 } |
1094 | 1095 |
1095 assert_valid_out_dir("_unused") { | 1096 assert_valid_out_dir("_unused") { |
1096 actual_sources = [ "$root_build_dir/foo" ] | 1097 actual_sources = [ "$root_build_dir/foo" ] |
1097 } | 1098 } |
OLD | NEW |