| 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] | 742 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] |
| 743 } | 743 } |
| 744 | 744 |
| 745 if (!is_android && !is_ios && !is_chromeos) { | 745 if (!is_android && !is_ios && !is_chromeos) { |
| 746 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 746 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 747 } | 747 } |
| 748 | 748 |
| 749 if (is_win || is_linux) { | 749 if (is_win || is_linux) { |
| 750 deps += [ | 750 deps += [ |
| 751 "//mash:all", | 751 "//mash:all", |
| 752 "//media/mojo/services:media_mojo_shell_unittests", | 752 "//media/mojo/services:media_service_unittests", |
| 753 "//mojo", | 753 "//mojo", |
| 754 "//services/navigation", | 754 "//services/navigation", |
| 755 "//services/preferences:tests", | 755 "//services/preferences:tests", |
| 756 "//services/ui/demo", | 756 "//services/ui/demo", |
| 757 "//services/ui/demo:mus_demo_unittests", | 757 "//services/ui/demo:mus_demo_unittests", |
| 758 "//services/ui/public/interfaces:ui_struct_traits_unittests", | 758 "//services/ui/public/interfaces:ui_struct_traits_unittests", |
| 759 "//services/ui/ws:tests", | 759 "//services/ui/ws:tests", |
| 760 "//ui/views/mus:views_mus_interactive_ui_tests", | 760 "//ui/views/mus:views_mus_interactive_ui_tests", |
| 761 "//ui/views/mus:views_mus_unittests", | 761 "//ui/views/mus:views_mus_unittests", |
| 762 ] | 762 ] |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 assert(target_name != "") # Mark as used. | 1099 assert(target_name != "") # Mark as used. |
| 1100 sources = invoker.actual_sources | 1100 sources = invoker.actual_sources |
| 1101 assert( | 1101 assert( |
| 1102 sources == invoker.actual_sources, | 1102 sources == invoker.actual_sources, |
| 1103 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1103 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1104 } | 1104 } |
| 1105 | 1105 |
| 1106 assert_valid_out_dir("_unused") { | 1106 assert_valid_out_dir("_unused") { |
| 1107 actual_sources = [ "$root_build_dir/foo" ] | 1107 actual_sources = [ "$root_build_dir/foo" ] |
| 1108 } | 1108 } |
| OLD | NEW |