| 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) | |
| 344 #'metro_utils', TODO(GYP) | 343 #'metro_utils', TODO(GYP) |
| 345 #'../google_update/google_update.gyp:google_update', TODO(GYP) | 344 #'../google_update/google_update.gyp:google_update', TODO(GYP) |
| 346 ] | 345 ] |
| 347 forward_dependent_configs_from += [ | 346 forward_dependent_configs_from += [ |
| 348 "//ui/views", | 347 "//ui/views", |
| 349 "//ui/views/controls/webview", | 348 "//ui/views/controls/webview", |
| 350 ] | 349 ] |
| 351 } else { # 'OS!="win" | 350 } else { # 'OS!="win" |
| 352 if (use_aura) { | 351 if (use_aura) { |
| 353 deps += [ | 352 deps += [ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 } | 411 } |
| 413 if (enable_service_discovery) { | 412 if (enable_service_discovery) { |
| 414 sources += rebase_path( | 413 sources += rebase_path( |
| 415 gypi_values.chrome_browser_ui_service_discovery_sources, | 414 gypi_values.chrome_browser_ui_service_discovery_sources, |
| 416 ".", "//chrome") | 415 ".", "//chrome") |
| 417 } | 416 } |
| 418 if (enable_spellcheck) { | 417 if (enable_spellcheck) { |
| 419 deps += [ "//third_party/hunspell" ] | 418 deps += [ "//third_party/hunspell" ] |
| 420 } | 419 } |
| 421 } | 420 } |
| OLD | NEW |