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