| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 sources += | 614 sources += |
| 615 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") | 615 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") |
| 616 } else { | 616 } else { |
| 617 # Non-mobile. | 617 # Non-mobile. |
| 618 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 618 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
| 619 ".", | 619 ".", |
| 620 "//chrome") | 620 "//chrome") |
| 621 deps += [ | 621 deps += [ |
| 622 "//components/feedback", | 622 "//components/feedback", |
| 623 "//device/core", | 623 "//device/core", |
| 624 "//device/devices_app:lib", | |
| 625 "//device/usb", | 624 "//device/usb", |
| 626 ] | 625 ] |
| 627 } | 626 } |
| 628 | 627 |
| 629 if (is_android) { | 628 if (is_android) { |
| 630 sources += | 629 sources += |
| 631 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 630 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 632 sources += rebase_path(gypi_values.chrome_browser_bookmark_android_sources, | 631 sources += rebase_path(gypi_values.chrome_browser_bookmark_android_sources, |
| 633 ".", | 632 ".", |
| 634 "//chrome") | 633 "//chrome") |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1175 ] | 1174 ] |
| 1176 } | 1175 } |
| 1177 | 1176 |
| 1178 if (enable_wifi_bootstrapping) { | 1177 if (enable_wifi_bootstrapping) { |
| 1179 sources += [ | 1178 sources += [ |
| 1180 "local_discovery/wifi/mock_wifi_manager.cc", | 1179 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1181 "local_discovery/wifi/mock_wifi_manager.h", | 1180 "local_discovery/wifi/mock_wifi_manager.h", |
| 1182 ] | 1181 ] |
| 1183 } | 1182 } |
| 1184 } | 1183 } |
| OLD | NEW |