| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 } else { # non-Mac. | 339 } else { # non-Mac. |
| 340 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 340 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, |
| 341 ".", | 341 ".", |
| 342 "//chrome") | 342 "//chrome") |
| 343 } | 343 } |
| 344 | 344 |
| 345 if (is_win) { | 345 if (is_win) { |
| 346 sources += | 346 sources += |
| 347 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 347 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 348 sources -= [ | 348 sources -= [ |
| 349 "views/apps/keyboard_hook_handler.cc", | |
| 350 "views/frame/taskbar_decorator.cc", | 349 "views/frame/taskbar_decorator.cc", |
| 351 ] | 350 ] |
| 352 public_deps += [ | 351 public_deps += [ |
| 353 "//ui/views", | 352 "//ui/views", |
| 354 "//ui/views/controls/webview", | 353 "//ui/views/controls/webview", |
| 355 ] | 354 ] |
| 356 deps += [ | 355 deps += [ |
| 357 "//chrome/browser/metro_utils", | 356 "//chrome/browser/metro_utils", |
| 358 "//chrome/installer/util:strings", | 357 "//chrome/installer/util:strings", |
| 359 "//google_update", | 358 "//google_update", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 "//chrome/browser", | 530 "//chrome/browser", |
| 532 "//content/public/browser", | 531 "//content/public/browser", |
| 533 "//content/public/common", | 532 "//content/public/common", |
| 534 "//content/test:test_support", | 533 "//content/test:test_support", |
| 535 "//net:test_support", | 534 "//net:test_support", |
| 536 "//skia", | 535 "//skia", |
| 537 "//testing/gtest", | 536 "//testing/gtest", |
| 538 "//ui/base", | 537 "//ui/base", |
| 539 ] | 538 ] |
| 540 } | 539 } |
| OLD | NEW |