| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, | 190 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, |
| 191 ".", | 191 ".", |
| 192 "//chrome") | 192 "//chrome") |
| 193 sources += | 193 sources += |
| 194 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, | 194 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, |
| 195 ".", | 195 ".", |
| 196 "//chrome") | 196 "//chrome") |
| 197 deps += [ | 197 deps += [ |
| 198 "//chrome/browser/profile_resetter:profile_reset_report_proto", | 198 "//chrome/browser/profile_resetter:profile_reset_report_proto", |
| 199 "//chrome/common:features", | 199 "//chrome/common:features", |
| 200 "//components/chooser_controller:chooser_controller", |
| 200 "//components/copresence", | 201 "//components/copresence", |
| 201 "//components/feedback/proto", | 202 "//components/feedback/proto", |
| 202 "//components/proximity_auth/webui", | 203 "//components/proximity_auth/webui", |
| 203 "//device/bluetooth", | 204 "//device/bluetooth", |
| 204 ] | 205 ] |
| 205 } | 206 } |
| 206 | 207 |
| 207 if (use_aura) { | 208 if (use_aura) { |
| 208 defines += [ "MOJO_RUNNER_CLIENT" ] | 209 defines += [ "MOJO_RUNNER_CLIENT" ] |
| 209 } | 210 } |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 "//chrome/browser", | 695 "//chrome/browser", |
| 695 "//content/public/browser", | 696 "//content/public/browser", |
| 696 "//content/public/common", | 697 "//content/public/common", |
| 697 "//content/test:test_support", | 698 "//content/test:test_support", |
| 698 "//net:test_support", | 699 "//net:test_support", |
| 699 "//skia", | 700 "//skia", |
| 700 "//testing/gtest", | 701 "//testing/gtest", |
| 701 "//ui/base", | 702 "//ui/base", |
| 702 ] | 703 ] |
| 703 } | 704 } |
| OLD | NEW |