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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 } | 375 } |
376 | 376 |
377 if (is_win) { | 377 if (is_win) { |
378 sources += | 378 sources += |
379 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 379 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
380 public_deps += [ | 380 public_deps += [ |
381 "//ui/views", | 381 "//ui/views", |
382 "//ui/views/controls/webview", | 382 "//ui/views/controls/webview", |
383 ] | 383 ] |
384 deps += [ | 384 deps += [ |
| 385 "//chrome/browser/metro_utils", |
385 "//chrome/installer/util:strings", | 386 "//chrome/installer/util:strings", |
| 387 "//google_update", |
386 "//third_party/wtl", | 388 "//third_party/wtl", |
387 "//third_party/iaccessible2", | 389 "//third_party/iaccessible2", |
388 "//third_party/isimpledom", | 390 "//third_party/isimpledom", |
389 "//ui/app_list", | 391 "//ui/app_list", |
390 | |
391 #'metro_utils', TODO(GYP) | |
392 #'../google_update/google_update.gyp:google_update', TODO(GYP) | |
393 ] | 392 ] |
394 } else { # 'OS!="win" | 393 } else { # 'OS!="win" |
395 if (toolkit_views) { | 394 if (toolkit_views) { |
396 public_deps += [ | 395 public_deps += [ |
397 "//ui/views", | 396 "//ui/views", |
398 "//ui/views/controls/webview", | 397 "//ui/views/controls/webview", |
399 ] | 398 ] |
400 } | 399 } |
401 } | 400 } |
402 if (is_desktop_linux) { | 401 if (is_desktop_linux) { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 "//chrome/browser", | 541 "//chrome/browser", |
543 "//content/public/browser", | 542 "//content/public/browser", |
544 "//content/public/common", | 543 "//content/public/common", |
545 "//content/test:test_support", | 544 "//content/test:test_support", |
546 "//net:test_support", | 545 "//net:test_support", |
547 "//skia", | 546 "//skia", |
548 "//testing/gtest", | 547 "//testing/gtest", |
549 "//ui/base", | 548 "//ui/base", |
550 ] | 549 ] |
551 } | 550 } |
OLD | NEW |