| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, | 127 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, |
| 128 ".", | 128 ".", |
| 129 "//chrome") | 129 "//chrome") |
| 130 sources += | 130 sources += |
| 131 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, | 131 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, |
| 132 ".", | 132 ".", |
| 133 "//chrome") | 133 "//chrome") |
| 134 deps += [ | 134 deps += [ |
| 135 "//components/copresence", | 135 "//components/copresence", |
| 136 "//components/feedback/proto", | 136 "//components/feedback/proto", |
| 137 "//components/proximity_auth/webui", |
| 137 "//device/bluetooth", | 138 "//device/bluetooth", |
| 138 "//third_party/libusb", | 139 "//third_party/libusb", |
| 139 ] | 140 ] |
| 140 } | 141 } |
| 141 | 142 |
| 142 if (enable_basic_printing || enable_print_preview) { | 143 if (enable_basic_printing || enable_print_preview) { |
| 143 deps += [ "//printing" ] | 144 deps += [ "//printing" ] |
| 144 } | 145 } |
| 145 | 146 |
| 146 if (enable_one_click_signin) { | 147 if (enable_one_click_signin) { |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "//chrome/browser", | 535 "//chrome/browser", |
| 535 "//content/public/browser", | 536 "//content/public/browser", |
| 536 "//content/public/common", | 537 "//content/public/common", |
| 537 "//content/test:test_support", | 538 "//content/test:test_support", |
| 538 "//net:test_support", | 539 "//net:test_support", |
| 539 "//skia", | 540 "//skia", |
| 540 "//testing/gtest", | 541 "//testing/gtest", |
| 541 "//ui/base", | 542 "//ui/base", |
| 542 ] | 543 ] |
| 543 } | 544 } |
| OLD | NEW |