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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 | 586 |
587 if (!is_android && !is_ios && !is_chromeos && !is_fuchsia) { | 587 if (!is_android && !is_ios && !is_chromeos && !is_fuchsia) { |
588 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 588 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
589 } | 589 } |
590 | 590 |
591 if (is_win || is_linux) { | 591 if (is_win || is_linux) { |
592 deps += [ | 592 deps += [ |
593 "//mash:all", | 593 "//mash:all", |
594 "//media/mojo/services:media_service_unittests", | 594 "//media/mojo/services:media_service_unittests", |
595 "//mojo", | 595 "//mojo", |
596 "//services/navigation", | |
597 "//services/ui/demo", | 596 "//services/ui/demo", |
598 "//services/ui/demo:mus_demo_unittests", | 597 "//services/ui/demo:mus_demo_unittests", |
599 "//services/ui/public/interfaces:ui_struct_traits_unittests", | 598 "//services/ui/public/interfaces:ui_struct_traits_unittests", |
600 "//services/ui/ws:tests", | 599 "//services/ui/ws:tests", |
601 "//ui/views/mus:views_mus_interactive_ui_tests", | 600 "//ui/views/mus:views_mus_interactive_ui_tests", |
602 "//ui/views/mus:views_mus_unittests", | 601 "//ui/views/mus:views_mus_unittests", |
603 ] | 602 ] |
604 | 603 |
605 # crbug.com/676055: media_service_unittests fails to link under Windows | 604 # crbug.com/676055: media_service_unittests fails to link under Windows |
606 # component builds, due to duplicate symbol definitions. | 605 # component builds, due to duplicate symbol definitions. |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 assert(target_name != "") # Mark as used. | 1065 assert(target_name != "") # Mark as used. |
1067 sources = invoker.actual_sources | 1066 sources = invoker.actual_sources |
1068 assert( | 1067 assert( |
1069 sources == invoker.actual_sources, | 1068 sources == invoker.actual_sources, |
1070 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1069 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
1071 } | 1070 } |
1072 | 1071 |
1073 assert_valid_out_dir("_unused") { | 1072 assert_valid_out_dir("_unused") { |
1074 actual_sources = [ "$root_build_dir/foo" ] | 1073 actual_sources = [ "$root_build_dir/foo" ] |
1075 } | 1074 } |
OLD | NEW |