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( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 sources += rebase_path(gypi_values.chrome_browser_ui_win_sources, | 333 sources += rebase_path(gypi_values.chrome_browser_ui_win_sources, |
334 ".", "//chrome") | 334 ".", "//chrome") |
335 deps += [ | 335 deps += [ |
336 "//third_party/wtl", | 336 "//third_party/wtl", |
337 "//third_party/iaccessible2", | 337 "//third_party/iaccessible2", |
338 "//third_party/isimpledom", | 338 "//third_party/isimpledom", |
339 "//ui/app_list", | 339 "//ui/app_list", |
340 "//ui/views", | 340 "//ui/views", |
341 "//ui/views/controls/webview", | 341 "//ui/views/controls/webview", |
342 #'installer_util_strings', TODO(GYP) | 342 #'installer_util_strings', TODO(GYP) |
| 343 #'launcher_support', TODO(GYP) |
343 #'metro_utils', TODO(GYP) | 344 #'metro_utils', TODO(GYP) |
344 #'../google_update/google_update.gyp:google_update', TODO(GYP) | 345 #'../google_update/google_update.gyp:google_update', TODO(GYP) |
345 ] | 346 ] |
346 forward_dependent_configs_from += [ | 347 forward_dependent_configs_from += [ |
347 "//ui/views", | 348 "//ui/views", |
348 "//ui/views/controls/webview", | 349 "//ui/views/controls/webview", |
349 ] | 350 ] |
350 } else { # 'OS!="win" | 351 } else { # 'OS!="win" |
351 if (use_aura) { | 352 if (use_aura) { |
352 deps += [ | 353 deps += [ |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 } | 412 } |
412 if (enable_service_discovery) { | 413 if (enable_service_discovery) { |
413 sources += rebase_path( | 414 sources += rebase_path( |
414 gypi_values.chrome_browser_ui_service_discovery_sources, | 415 gypi_values.chrome_browser_ui_service_discovery_sources, |
415 ".", "//chrome") | 416 ".", "//chrome") |
416 } | 417 } |
417 if (enable_spellcheck) { | 418 if (enable_spellcheck) { |
418 deps += [ "//third_party/hunspell" ] | 419 deps += [ "//third_party/hunspell" ] |
419 } | 420 } |
420 } | 421 } |
OLD | NEW |