| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 deps += [ | 616 deps += [ |
| 617 "//components/feedback", | 617 "//components/feedback", |
| 618 "//device/core", | 618 "//device/core", |
| 619 "//device/usb", | 619 "//device/usb", |
| 620 ] | 620 ] |
| 621 } | 621 } |
| 622 | 622 |
| 623 if (is_android) { | 623 if (is_android) { |
| 624 sources += | 624 sources += |
| 625 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 625 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 626 sources += rebase_path(gypi_values.chrome_browser_bookmark_android_sources, |
| 627 ".", |
| 628 "//chrome") |
| 626 deps += [ | 629 deps += [ |
| 627 ":client_discourse_context_proto", | 630 ":client_discourse_context_proto", |
| 628 ":delta_file_proto", | 631 ":delta_file_proto", |
| 629 ":jni_headers", | 632 ":jni_headers", |
| 630 "//components/cdm/browser", | 633 "//components/cdm/browser", |
| 631 "//components/enhanced_bookmarks", | 634 "//components/enhanced_bookmarks", |
| 632 "//components/resources:components_resources", | 635 "//components/resources:components_resources", |
| 636 "//components/resources/enhanced_bookmarks:enhanced_bookmarks_resources", |
| 633 "//components/service_tab_launcher", | 637 "//components/service_tab_launcher", |
| 634 "//components/web_contents_delegate_android", | 638 "//components/web_contents_delegate_android", |
| 635 "//third_party/android_opengl/etc1", | 639 "//third_party/android_opengl/etc1", |
| 636 "//third_party/android_tools:cpu_features", | 640 "//third_party/android_tools:cpu_features", |
| 637 "//third_party/libaddressinput:util", | 641 "//third_party/libaddressinput:util", |
| 638 ] | 642 ] |
| 639 deps -= [ | 643 deps -= [ |
| 640 "//third_party/libaddressinput", | 644 "//third_party/libaddressinput", |
| 641 "//components/storage_monitor", | 645 "//components/storage_monitor", |
| 642 "//components/web_modal", | 646 "//components/web_modal", |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 ] | 1168 ] |
| 1165 } | 1169 } |
| 1166 | 1170 |
| 1167 if (enable_wifi_bootstrapping) { | 1171 if (enable_wifi_bootstrapping) { |
| 1168 sources += [ | 1172 sources += [ |
| 1169 "local_discovery/wifi/mock_wifi_manager.cc", | 1173 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1170 "local_discovery/wifi/mock_wifi_manager.h", | 1174 "local_discovery/wifi/mock_wifi_manager.h", |
| 1171 ] | 1175 ] |
| 1172 } | 1176 } |
| 1173 } | 1177 } |
| OLD | NEW |