| 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("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 | 10 |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 } | 478 } |
| 479 | 479 |
| 480 if (is_win) { | 480 if (is_win) { |
| 481 sources += | 481 sources += |
| 482 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 482 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 483 public_deps += [ | 483 public_deps += [ |
| 484 "//ui/views", | 484 "//ui/views", |
| 485 "//ui/views/controls/webview", | 485 "//ui/views/controls/webview", |
| 486 ] | 486 ] |
| 487 deps += [ | 487 deps += [ |
| 488 "//chrome/installer/util:strings", | |
| 489 "//components/search_engines", | 488 "//components/search_engines", |
| 490 "//google_update", | 489 "//google_update", |
| 491 "//third_party/iaccessible2", | 490 "//third_party/iaccessible2", |
| 492 "//third_party/isimpledom", | 491 "//third_party/isimpledom", |
| 493 "//third_party/wtl", | 492 "//third_party/wtl", |
| 494 "//ui/base/ime", | 493 "//ui/base/ime", |
| 495 "//ui/events:dom_keycode_converter", | 494 "//ui/events:dom_keycode_converter", |
| 496 ] | 495 ] |
| 497 if (!is_chrome_branded) { | 496 if (!is_chrome_branded) { |
| 498 deps -= [ "//google_update" ] | 497 deps -= [ "//google_update" ] |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 "//chrome/browser", | 712 "//chrome/browser", |
| 714 "//content/public/browser", | 713 "//content/public/browser", |
| 715 "//content/public/common", | 714 "//content/public/common", |
| 716 "//content/test:test_support", | 715 "//content/test:test_support", |
| 717 "//net:test_support", | 716 "//net:test_support", |
| 718 "//skia", | 717 "//skia", |
| 719 "//testing/gtest", | 718 "//testing/gtest", |
| 720 "//ui/base", | 719 "//ui/base", |
| 721 ] | 720 ] |
| 722 } | 721 } |
| OLD | NEW |