| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 383 |
| 384 if (is_win) { | 384 if (is_win) { |
| 385 sources += | 385 sources += |
| 386 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 386 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 387 sources -= [ "views/frame/taskbar_decorator.cc" ] | 387 sources -= [ "views/frame/taskbar_decorator.cc" ] |
| 388 public_deps += [ | 388 public_deps += [ |
| 389 "//ui/views", | 389 "//ui/views", |
| 390 "//ui/views/controls/webview", | 390 "//ui/views/controls/webview", |
| 391 ] | 391 ] |
| 392 deps += [ | 392 deps += [ |
| 393 "//chrome/browser/metro_utils", | |
| 394 "//chrome/installer/util:strings", | 393 "//chrome/installer/util:strings", |
| 395 "//components/search_engines", | 394 "//components/search_engines", |
| 396 "//google_update", | 395 "//google_update", |
| 397 "//third_party/iaccessible2", | 396 "//third_party/iaccessible2", |
| 398 "//third_party/isimpledom", | 397 "//third_party/isimpledom", |
| 399 "//third_party/wtl", | 398 "//third_party/wtl", |
| 400 "//ui/app_list", | 399 "//ui/app_list", |
| 401 ] | 400 ] |
| 402 if (!is_chrome_branded) { | 401 if (!is_chrome_branded) { |
| 403 deps -= [ "//google_update" ] | 402 deps -= [ "//google_update" ] |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 "//chrome/browser", | 606 "//chrome/browser", |
| 608 "//content/public/browser", | 607 "//content/public/browser", |
| 609 "//content/public/common", | 608 "//content/public/common", |
| 610 "//content/test:test_support", | 609 "//content/test:test_support", |
| 611 "//net:test_support", | 610 "//net:test_support", |
| 612 "//skia", | 611 "//skia", |
| 613 "//testing/gtest", | 612 "//testing/gtest", |
| 614 "//ui/base", | 613 "//ui/base", |
| 615 ] | 614 ] |
| 616 } | 615 } |
| OLD | NEW |