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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, | 437 sources += rebase_path(gypi_values.chrome_browser_ui_extensions_sources, |
438 ".", | 438 ".", |
439 "//chrome") | 439 "//chrome") |
440 } | 440 } |
441 if (enable_google_now && !is_android) { | 441 if (enable_google_now && !is_android) { |
442 sources += rebase_path( | 442 sources += rebase_path( |
443 gypi_values.chrome_browser_ui_google_now_non_android_sources, | 443 gypi_values.chrome_browser_ui_google_now_non_android_sources, |
444 ".", | 444 ".", |
445 "//chrome") | 445 "//chrome") |
446 } | 446 } |
447 if (enable_media_router) { | 447 if (enable_media_router && !is_android && !is_ios) { |
448 sources += rebase_path(gypi_values.chrome_browser_ui_media_router_sources, | 448 sources += rebase_path(gypi_values.chrome_browser_ui_media_router_sources, |
449 ".", | 449 ".", |
450 "//chrome") | 450 "//chrome") |
451 deps += [ "//chrome/browser/media/router" ] | 451 deps += [ "//chrome/browser/media/router" ] |
452 } | 452 } |
453 if (enable_webrtc) { | 453 if (enable_webrtc) { |
454 sources += rebase_path(gypi_values.chrome_browser_ui_webrtc_sources, | 454 sources += rebase_path(gypi_values.chrome_browser_ui_webrtc_sources, |
455 ".", | 455 ".", |
456 "//chrome") | 456 "//chrome") |
457 } | 457 } |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 "//chrome/browser", | 526 "//chrome/browser", |
527 "//content/public/browser", | 527 "//content/public/browser", |
528 "//content/public/common", | 528 "//content/public/common", |
529 "//content/test:test_support", | 529 "//content/test:test_support", |
530 "//net:test_support", | 530 "//net:test_support", |
531 "//skia", | 531 "//skia", |
532 "//testing/gtest", | 532 "//testing/gtest", |
533 "//ui/base", | 533 "//ui/base", |
534 ] | 534 ] |
535 } | 535 } |
OLD | NEW |