| 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 if (is_android) { | 585 if (is_android) { |
| 586 sources += | 586 sources += |
| 587 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 587 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 588 deps += [ | 588 deps += [ |
| 589 ":jni_headers", | 589 ":jni_headers", |
| 590 "//components/cdm/browser", | 590 "//components/cdm/browser", |
| 591 "//components/enhanced_bookmarks", | 591 "//components/enhanced_bookmarks", |
| 592 "//components/resources:components_resources", | 592 "//components/resources:components_resources", |
| 593 "//components/web_contents_delegate_android", | 593 "//components/web_contents_delegate_android", |
| 594 "//third_party/android_opengl/etc1", | 594 "//third_party/android_opengl/etc1", |
| 595 "//third_party/libaddressinput:util", |
| 595 ] | 596 ] |
| 596 deps -= [ | 597 deps -= [ |
| 597 "//third_party/libaddressinput", | 598 "//third_party/libaddressinput", |
| 598 "//components/feedback", | 599 "//components/feedback", |
| 599 "//components/storage_monitor", | 600 "//components/storage_monitor", |
| 600 "//components/web_modal", | 601 "//components/web_modal", |
| 601 ] | 602 ] |
| 602 } | 603 } |
| 603 | 604 |
| 604 if (is_mac) { | 605 if (is_mac) { |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 ] | 1071 ] |
| 1071 } | 1072 } |
| 1072 | 1073 |
| 1073 if (enable_wifi_bootstrapping) { | 1074 if (enable_wifi_bootstrapping) { |
| 1074 sources += [ | 1075 sources += [ |
| 1075 "local_discovery/wifi/mock_wifi_manager.cc", | 1076 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1076 "local_discovery/wifi/mock_wifi_manager.h", | 1077 "local_discovery/wifi/mock_wifi_manager.h", |
| 1077 ] | 1078 ] |
| 1078 } | 1079 } |
| 1079 } | 1080 } |
| OLD | NEW |