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