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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 if (enable_google_now && !is_android) { | 410 if (enable_google_now && !is_android) { |
411 sources += rebase_path( | 411 sources += rebase_path( |
412 gypi_values.chrome_browser_ui_google_now_non_android_sources, | 412 gypi_values.chrome_browser_ui_google_now_non_android_sources, |
413 ".", | 413 ".", |
414 "//chrome") | 414 "//chrome") |
415 } | 415 } |
416 if (enable_media_router) { | 416 if (enable_media_router) { |
417 sources += rebase_path(gypi_values.chrome_browser_ui_media_router_sources, | 417 sources += rebase_path(gypi_values.chrome_browser_ui_media_router_sources, |
418 ".", | 418 ".", |
419 "//chrome") | 419 "//chrome") |
| 420 deps += [ "//chrome/browser/media/router:router_core" ] |
420 } | 421 } |
421 if (enable_webrtc) { | 422 if (enable_webrtc) { |
422 sources += rebase_path(gypi_values.chrome_browser_ui_webrtc_sources, | 423 sources += rebase_path(gypi_values.chrome_browser_ui_webrtc_sources, |
423 ".", | 424 ".", |
424 "//chrome") | 425 "//chrome") |
425 } | 426 } |
426 if (enable_service_discovery) { | 427 if (enable_service_discovery) { |
427 sources += | 428 sources += |
428 rebase_path(gypi_values.chrome_browser_ui_service_discovery_sources, | 429 rebase_path(gypi_values.chrome_browser_ui_service_discovery_sources, |
429 ".", | 430 ".", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 "//chrome/browser", | 500 "//chrome/browser", |
500 "//content/public/browser", | 501 "//content/public/browser", |
501 "//content/public/common", | 502 "//content/public/common", |
502 "//content/test:test_support", | 503 "//content/test:test_support", |
503 "//net:test_support", | 504 "//net:test_support", |
504 "//skia", | 505 "//skia", |
505 "//testing/gtest", | 506 "//testing/gtest", |
506 "//ui/base", | 507 "//ui/base", |
507 ] | 508 ] |
508 } | 509 } |
OLD | NEW |