| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 # iOS. | 122 # iOS. |
| 123 sources += | 123 sources += |
| 124 rebase_path(gypi_values.chrome_browser_ui_ios_sources, ".", "//chrome") | 124 rebase_path(gypi_values.chrome_browser_ui_ios_sources, ".", "//chrome") |
| 125 deps += [ "//net" ] | 125 deps += [ "//net" ] |
| 126 } | 126 } |
| 127 | 127 |
| 128 if (!is_android && !is_ios) { | 128 if (!is_android && !is_ios) { |
| 129 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, | 129 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, |
| 130 ".", | 130 ".", |
| 131 "//chrome") | 131 "//chrome") |
| 132 deps += [ "//device/bluetooth" ] | 132 deps += [ |
| 133 "//device/bluetooth", |
| 134 "//components/copresence" |
| 135 ] |
| 133 } | 136 } |
| 134 | 137 |
| 135 if (enable_basic_printing || enable_print_preview) { | 138 if (enable_basic_printing || enable_print_preview) { |
| 136 deps += [ "//printing" ] | 139 deps += [ "//printing" ] |
| 137 } | 140 } |
| 138 | 141 |
| 139 if (enable_one_click_signin) { | 142 if (enable_one_click_signin) { |
| 140 sources += | 143 sources += |
| 141 rebase_path(gypi_values.chrome_browser_ui_one_click_signin_sources, | 144 rebase_path(gypi_values.chrome_browser_ui_one_click_signin_sources, |
| 142 ".", | 145 ".", |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 "//chrome/browser", | 530 "//chrome/browser", |
| 528 "//content/public/browser", | 531 "//content/public/browser", |
| 529 "//content/public/common", | 532 "//content/public/common", |
| 530 "//content/test:test_support", | 533 "//content/test:test_support", |
| 531 "//net:test_support", | 534 "//net:test_support", |
| 532 "//skia", | 535 "//skia", |
| 533 "//testing/gtest", | 536 "//testing/gtest", |
| 534 "//ui/base", | 537 "//ui/base", |
| 535 ] | 538 ] |
| 536 } | 539 } |
| OLD | NEW |