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