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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "//components/certificate_reporting:encrypted_cert_logger_proto", | 50 "//components/certificate_reporting:encrypted_cert_logger_proto", |
51 "//components/dom_distiller/webui", | 51 "//components/dom_distiller/webui", |
52 "//components/invalidation/impl", | 52 "//components/invalidation/impl", |
53 "//components/omnibox/common", | 53 "//components/omnibox/common", |
54 "//components/onc", | 54 "//components/onc", |
55 "//components/password_manager/core/browser", | 55 "//components/password_manager/core/browser", |
56 "//components/resources", | 56 "//components/resources", |
57 "//components/strings", | 57 "//components/strings", |
58 "//components/toolbar", | 58 "//components/toolbar", |
59 "//components/update_client", | 59 "//components/update_client", |
| 60 "//components/version_ui", |
60 "//content/public/common", | 61 "//content/public/common", |
61 "//crypto", | 62 "//crypto", |
62 "//skia", | 63 "//skia", |
63 "//third_party/cacheinvalidation", | 64 "//third_party/cacheinvalidation", |
64 "//third_party/icu", | 65 "//third_party/icu", |
65 "//third_party/zlib", | 66 "//third_party/zlib", |
66 "//ui/accessibility", | 67 "//ui/accessibility", |
67 "//ui/base", | 68 "//ui/base", |
68 "//ui/content_accelerators", | 69 "//ui/content_accelerators", |
69 "//ui/events", | 70 "//ui/events", |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] | 339 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] |
339 } else { # non-Mac. | 340 } else { # non-Mac. |
340 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 341 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, |
341 ".", | 342 ".", |
342 "//chrome") | 343 "//chrome") |
343 } | 344 } |
344 | 345 |
345 if (is_win) { | 346 if (is_win) { |
346 sources += | 347 sources += |
347 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 348 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
348 sources -= [ | 349 sources -= [ "views/frame/taskbar_decorator.cc" ] |
349 "views/frame/taskbar_decorator.cc", | |
350 ] | |
351 public_deps += [ | 350 public_deps += [ |
352 "//ui/views", | 351 "//ui/views", |
353 "//ui/views/controls/webview", | 352 "//ui/views/controls/webview", |
354 ] | 353 ] |
355 deps += [ | 354 deps += [ |
356 "//chrome/browser/metro_utils", | 355 "//chrome/browser/metro_utils", |
357 "//chrome/installer/util:strings", | 356 "//chrome/installer/util:strings", |
358 "//google_update", | 357 "//google_update", |
359 "//third_party/wtl", | 358 "//third_party/wtl", |
360 "//third_party/iaccessible2", | 359 "//third_party/iaccessible2", |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 "//chrome/browser", | 529 "//chrome/browser", |
531 "//content/public/browser", | 530 "//content/public/browser", |
532 "//content/public/common", | 531 "//content/public/common", |
533 "//content/test:test_support", | 532 "//content/test:test_support", |
534 "//net:test_support", | 533 "//net:test_support", |
535 "//skia", | 534 "//skia", |
536 "//testing/gtest", | 535 "//testing/gtest", |
537 "//ui/base", | 536 "//ui/base", |
538 ] | 537 ] |
539 } | 538 } |
OLD | NEW |