| 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 | 8 |
| 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 10 # produces a conflict for the "grit" template so we have to only include one. | 10 # produces a conflict for the "grit" template so we have to only include one. |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 } | 597 } |
| 598 | 598 |
| 599 if (is_android) { | 599 if (is_android) { |
| 600 sources += | 600 sources += |
| 601 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") | 601 rebase_path(gypi_values.chrome_browser_android_sources, ".", "//chrome") |
| 602 deps += [ | 602 deps += [ |
| 603 ":jni_headers", | 603 ":jni_headers", |
| 604 "//components/cdm/browser", | 604 "//components/cdm/browser", |
| 605 "//components/enhanced_bookmarks", | 605 "//components/enhanced_bookmarks", |
| 606 "//components/resources:components_resources", | 606 "//components/resources:components_resources", |
| 607 "//components/service_tab_launcher", |
| 607 "//components/web_contents_delegate_android", | 608 "//components/web_contents_delegate_android", |
| 608 "//third_party/android_opengl/etc1", | 609 "//third_party/android_opengl/etc1", |
| 609 "//third_party/libaddressinput:util", | 610 "//third_party/libaddressinput:util", |
| 610 ] | 611 ] |
| 611 deps -= [ | 612 deps -= [ |
| 612 "//third_party/libaddressinput", | 613 "//third_party/libaddressinput", |
| 613 "//components/storage_monitor", | 614 "//components/storage_monitor", |
| 614 "//components/web_modal", | 615 "//components/web_modal", |
| 615 ] | 616 ] |
| 616 defines += [ "ENABLE_DATA_REDUCTION_PROXY_DEBUGGING" ] | 617 defines += [ "ENABLE_DATA_REDUCTION_PROXY_DEBUGGING" ] |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 ] | 1110 ] |
| 1110 } | 1111 } |
| 1111 | 1112 |
| 1112 if (enable_wifi_bootstrapping) { | 1113 if (enable_wifi_bootstrapping) { |
| 1113 sources += [ | 1114 sources += [ |
| 1114 "local_discovery/wifi/mock_wifi_manager.cc", | 1115 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1115 "local_discovery/wifi/mock_wifi_manager.h", | 1116 "local_discovery/wifi/mock_wifi_manager.h", |
| 1116 ] | 1117 ] |
| 1117 } | 1118 } |
| 1118 } | 1119 } |
| OLD | NEW |