| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 sources += | 605 sources += |
| 606 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") | 606 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") |
| 607 } else { | 607 } else { |
| 608 # Non-mobile. | 608 # Non-mobile. |
| 609 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 609 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
| 610 ".", | 610 ".", |
| 611 "//chrome") | 611 "//chrome") |
| 612 deps += [ | 612 deps += [ |
| 613 "//components/feedback", | 613 "//components/feedback", |
| 614 "//device/core", | 614 "//device/core", |
| 615 "//device/devices_app:lib", |
| 615 "//device/usb", | 616 "//device/usb", |
| 616 ] | 617 ] |
| 617 } | 618 } |
| 618 | 619 |
| 619 if (is_android) { | 620 if (is_android) { |
| 620 sources += | 621 sources += |
| 621 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 622 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 622 sources += rebase_path(gypi_values.chrome_browser_bookmark_android_sources, | 623 sources += rebase_path(gypi_values.chrome_browser_bookmark_android_sources, |
| 623 ".", | 624 ".", |
| 624 "//chrome") | 625 "//chrome") |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1165 ] | 1166 ] |
| 1166 } | 1167 } |
| 1167 | 1168 |
| 1168 if (enable_wifi_bootstrapping) { | 1169 if (enable_wifi_bootstrapping) { |
| 1169 sources += [ | 1170 sources += [ |
| 1170 "local_discovery/wifi/mock_wifi_manager.cc", | 1171 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1171 "local_discovery/wifi/mock_wifi_manager.h", | 1172 "local_discovery/wifi/mock_wifi_manager.h", |
| 1172 ] | 1173 ] |
| 1173 } | 1174 } |
| 1174 } | 1175 } |
| OLD | NEW |