| 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 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 if ((!is_android || use_aura) && !is_ios) { | 138 if ((!is_android || use_aura) && !is_ios) { |
| 139 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, | 139 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, |
| 140 ".", | 140 ".", |
| 141 "//chrome") | 141 "//chrome") |
| 142 sources += | 142 sources += |
| 143 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, | 143 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, |
| 144 ".", | 144 ".", |
| 145 "//chrome") | 145 "//chrome") |
| 146 deps += [ | 146 deps += [ |
| 147 "//chrome/common:features", |
| 147 "//components/copresence", | 148 "//components/copresence", |
| 148 "//components/feedback/proto", | 149 "//components/feedback/proto", |
| 149 "//components/proximity_auth/webui", | 150 "//components/proximity_auth/webui", |
| 150 "//device/bluetooth", | 151 "//device/bluetooth", |
| 151 "//third_party/libusb", | 152 "//third_party/libusb", |
| 152 ] | 153 ] |
| 153 | 154 |
| 154 if (is_android) { | 155 if (is_android) { |
| 155 deps -= [ "//third_party/libusb" ] | 156 deps -= [ "//third_party/libusb" ] |
| 156 } | 157 } |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 "//chrome/browser", | 610 "//chrome/browser", |
| 610 "//content/public/browser", | 611 "//content/public/browser", |
| 611 "//content/public/common", | 612 "//content/public/common", |
| 612 "//content/test:test_support", | 613 "//content/test:test_support", |
| 613 "//net:test_support", | 614 "//net:test_support", |
| 614 "//skia", | 615 "//skia", |
| 615 "//testing/gtest", | 616 "//testing/gtest", |
| 616 "//ui/base", | 617 "//ui/base", |
| 617 ] | 618 ] |
| 618 } | 619 } |
| OLD | NEW |