| 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("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 | 9 |
| 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 "//device/usb", | 576 "//device/usb", |
| 577 ] | 577 ] |
| 578 } | 578 } |
| 579 | 579 |
| 580 if (is_android) { | 580 if (is_android) { |
| 581 sources += | 581 sources += |
| 582 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 582 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 583 deps += [ | 583 deps += [ |
| 584 ":jni_headers", | 584 ":jni_headers", |
| 585 "//components/cdm/browser", | 585 "//components/cdm/browser", |
| 586 "//components/data_reduction_proxy/content", |
| 586 "//components/enhanced_bookmarks", | 587 "//components/enhanced_bookmarks", |
| 587 "//components/history/core/android", | 588 "//components/history/core/android", |
| 588 "//components/resources:components_resources", | 589 "//components/resources:components_resources", |
| 589 "//components/web_contents_delegate_android", | 590 "//components/web_contents_delegate_android", |
| 590 "//third_party/android_opengl/etc1", | 591 "//third_party/android_opengl/etc1", |
| 591 ] | 592 ] |
| 592 deps -= [ | 593 deps -= [ |
| 593 "//third_party/libaddressinput", | 594 "//third_party/libaddressinput", |
| 594 "//components/feedback", | 595 "//components/feedback", |
| 595 "//components/storage_monitor", | 596 "//components/storage_monitor", |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 ] | 1067 ] |
| 1067 } | 1068 } |
| 1068 | 1069 |
| 1069 if (enable_wifi_bootstrapping) { | 1070 if (enable_wifi_bootstrapping) { |
| 1070 sources += [ | 1071 sources += [ |
| 1071 "local_discovery/wifi/mock_wifi_manager.cc", | 1072 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1072 "local_discovery/wifi/mock_wifi_manager.h", | 1073 "local_discovery/wifi/mock_wifi_manager.h", |
| 1073 ] | 1074 ] |
| 1074 } | 1075 } |
| 1075 } | 1076 } |
| OLD | NEW |