| 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 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] | 446 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] |
| 447 } else { # non-Mac. | 447 } else { # non-Mac. |
| 448 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 448 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, |
| 449 ".", | 449 ".", |
| 450 "//chrome") | 450 "//chrome") |
| 451 } | 451 } |
| 452 | 452 |
| 453 if (is_win) { | 453 if (is_win) { |
| 454 sources += | 454 sources += |
| 455 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 455 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 456 sources -= [ "views/frame/taskbar_decorator.cc" ] | |
| 457 public_deps += [ | 456 public_deps += [ |
| 458 "//ui/views", | 457 "//ui/views", |
| 459 "//ui/views/controls/webview", | 458 "//ui/views/controls/webview", |
| 460 ] | 459 ] |
| 461 deps += [ | 460 deps += [ |
| 462 "//chrome/installer/util:strings", | 461 "//chrome/installer/util:strings", |
| 463 "//components/search_engines", | 462 "//components/search_engines", |
| 464 "//google_update", | 463 "//google_update", |
| 465 "//third_party/iaccessible2", | 464 "//third_party/iaccessible2", |
| 466 "//third_party/isimpledom", | 465 "//third_party/isimpledom", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 "//chrome/browser", | 684 "//chrome/browser", |
| 686 "//content/public/browser", | 685 "//content/public/browser", |
| 687 "//content/public/common", | 686 "//content/public/common", |
| 688 "//content/test:test_support", | 687 "//content/test:test_support", |
| 689 "//net:test_support", | 688 "//net:test_support", |
| 690 "//skia", | 689 "//skia", |
| 691 "//testing/gtest", | 690 "//testing/gtest", |
| 692 "//ui/base", | 691 "//ui/base", |
| 693 ] | 692 ] |
| 694 } | 693 } |
| OLD | NEW |