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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] | 353 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] |
354 } else { # non-Mac. | 354 } else { # non-Mac. |
355 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 355 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, |
356 ".", | 356 ".", |
357 "//chrome") | 357 "//chrome") |
358 } | 358 } |
359 | 359 |
360 if (is_win) { | 360 if (is_win) { |
361 sources += | 361 sources += |
362 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 362 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
363 sources -= [ "views/frame/taskbar_decorator.cc" ] | |
364 public_deps += [ | 363 public_deps += [ |
365 "//ui/views", | 364 "//ui/views", |
366 "//ui/views/controls/webview", | 365 "//ui/views/controls/webview", |
367 ] | 366 ] |
368 deps += [ | 367 deps += [ |
369 "//chrome/browser/metro_utils", | 368 "//chrome/browser/metro_utils", |
370 "//chrome/installer/util:strings", | 369 "//chrome/installer/util:strings", |
371 "//google_update", | 370 "//google_update", |
372 "//third_party/wtl", | 371 "//third_party/wtl", |
373 "//third_party/iaccessible2", | 372 "//third_party/iaccessible2", |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 "//chrome/browser", | 524 "//chrome/browser", |
526 "//content/public/browser", | 525 "//content/public/browser", |
527 "//content/public/common", | 526 "//content/public/common", |
528 "//content/test:test_support", | 527 "//content/test:test_support", |
529 "//net:test_support", | 528 "//net:test_support", |
530 "//skia", | 529 "//skia", |
531 "//testing/gtest", | 530 "//testing/gtest", |
532 "//ui/base", | 531 "//ui/base", |
533 ] | 532 ] |
534 } | 533 } |
OLD | NEW |