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