OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("../../chrome_browser_ui.gypi") ], | 10 [ rebase_path("../../chrome_browser_ui.gypi") ], |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "//chrome") | 161 "//chrome") |
162 } | 162 } |
163 if (enable_task_manager) { | 163 if (enable_task_manager) { |
164 sources += rebase_path(gypi_values.chrome_browser_ui_task_manager_sources, | 164 sources += rebase_path(gypi_values.chrome_browser_ui_task_manager_sources, |
165 ".", | 165 ".", |
166 "//chrome") | 166 "//chrome") |
167 if (!toolkit_views || is_mac) { | 167 if (!toolkit_views || is_mac) { |
168 sources -= [ "views/task_manager_view.cc" ] | 168 sources -= [ "views/task_manager_view.cc" ] |
169 } | 169 } |
170 } | 170 } |
171 if (!enable_nacl) { | 171 if (enable_nacl) { |
172 sources += | 172 sources += |
173 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") | 173 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") |
174 deps += [ | 174 deps += [ "//native_client/src/trusted/service_runtime:sel" ] |
175 #"//native_client/src/trusted/service_runtime/service_runtime.gyp:sel", T
ODO(GYP) | |
176 ] | |
177 } | 175 } |
178 if (enable_configuration_policy) { | 176 if (enable_configuration_policy) { |
179 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, | 177 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, |
180 ".", | 178 ".", |
181 "//chrome") | 179 "//chrome") |
182 deps += [ "//components/policy" ] | 180 deps += [ "//components/policy" ] |
183 } | 181 } |
184 if (enable_plugins) { | 182 if (enable_plugins) { |
185 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, | 183 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, |
186 ".", | 184 ".", |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 "//chrome/browser", | 526 "//chrome/browser", |
529 "//content/public/browser", | 527 "//content/public/browser", |
530 "//content/public/common", | 528 "//content/public/common", |
531 "//content/test:test_support", | 529 "//content/test:test_support", |
532 "//net:test_support", | 530 "//net:test_support", |
533 "//skia", | 531 "//skia", |
534 "//testing/gtest", | 532 "//testing/gtest", |
535 "//ui/base", | 533 "//ui/base", |
536 ] | 534 ] |
537 } | 535 } |
OLD | NEW |