| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 deps = [ | 110 deps = [ |
| 111 "//chrome/installer/gcapi", | 111 "//chrome/installer/gcapi", |
| 112 "//chrome/installer/mini_installer", | 112 "//chrome/installer/mini_installer", |
| 113 "//components/policy:pack_policy_templates", | 113 "//components/policy:pack_policy_templates", |
| 114 "//courgette", | 114 "//courgette", |
| 115 "//courgette:copy_courgette_binaries", | 115 "//courgette:copy_courgette_binaries", |
| 116 "//remoting/webapp", | 116 "//remoting/webapp", |
| 117 ] | 117 ] |
| 118 | 118 |
| 119 if (target_cpu == "x86") { | 119 if (target_cpu == "x86") { |
| 120 deps += [ "//chrome/tools/disable_outdated_build_detector" ] | |
| 121 if (is_clang) { | 120 if (is_clang) { |
| 122 deps += [ "//courgette(//build/toolchain/win:clang_x64)" ] | 121 deps += [ "//courgette(//build/toolchain/win:clang_x64)" ] |
| 123 } else { | 122 } else { |
| 124 deps += [ "//courgette(//build/toolchain/win:x64)" ] | 123 deps += [ "//courgette(//build/toolchain/win:x64)" ] |
| 125 } | 124 } |
| 126 if (is_chrome_branded) { | 125 if (is_chrome_branded) { |
| 127 deps += [ "//remoting/host:remoting_host_installation" ] | 126 deps += [ "//remoting/host:remoting_host_installation" ] |
| 128 } | 127 } |
| 129 } | 128 } |
| 130 } | 129 } |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 } | 708 } |
| 710 | 709 |
| 711 if (!is_android && !is_ios) { | 710 if (!is_android && !is_ios) { |
| 712 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] | 711 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] |
| 713 } | 712 } |
| 714 | 713 |
| 715 if (!is_android && !is_ios && !is_chromeos) { | 714 if (!is_android && !is_ios && !is_chromeos) { |
| 716 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 715 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 717 } | 716 } |
| 718 | 717 |
| 719 if (is_win && target_cpu == "x86") { | |
| 720 deps += [ "//chrome/tools/disable_outdated_build_detector" ] | |
| 721 } | |
| 722 | |
| 723 if (is_win || is_linux) { | 718 if (is_win || is_linux) { |
| 724 deps += [ | 719 deps += [ |
| 725 "//mash:all", | 720 "//mash:all", |
| 726 "//media/mojo/services:media_mojo_shell_unittests", | 721 "//media/mojo/services:media_mojo_shell_unittests", |
| 727 "//mojo", | 722 "//mojo", |
| 728 "//services/navigation", | 723 "//services/navigation", |
| 729 "//services/ui/demo", | 724 "//services/ui/demo", |
| 730 "//services/ui/ws:tests", | 725 "//services/ui/ws:tests", |
| 731 "//ui/views/mus:views_mus_interactive_ui_tests", | 726 "//ui/views/mus:views_mus_interactive_ui_tests", |
| 732 "//ui/views/mus:views_mus_unittests", | 727 "//ui/views/mus:views_mus_unittests", |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1132 "//ui/display:display_unittests", | 1127 "//ui/display:display_unittests", |
| 1133 "//ui/events:events_unittests", | 1128 "//ui/events:events_unittests", |
| 1134 "//ui/gfx:gfx_unittests", | 1129 "//ui/gfx:gfx_unittests", |
| 1135 "//ui/gl:gl_unittests", | 1130 "//ui/gl:gl_unittests", |
| 1136 "//ui/keyboard:keyboard_unittests", | 1131 "//ui/keyboard:keyboard_unittests", |
| 1137 "//ui/touch_selection:ui_touch_selection_unittests", | 1132 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1138 "//url:url_unittests", | 1133 "//url:url_unittests", |
| 1139 ] | 1134 ] |
| 1140 } | 1135 } |
| 1141 } | 1136 } |
| OLD | NEW |