| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ios/ios_sdk.gni") | 5 import("//build/config/ios/ios_sdk.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 config("config") { | 9 config("config") { |
| 10 defines = [ "CWV_IMPLEMENTATION" ] | 10 defines = [ "CWV_IMPLEMENTATION" ] |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//base", | 81 "//base", |
| 82 "//components/infobars/core", | 82 "//components/infobars/core", |
| 83 "//components/infobars/core", | 83 "//components/infobars/core", |
| 84 "//components/keyed_service/core", | 84 "//components/keyed_service/core", |
| 85 "//components/keyed_service/ios", | 85 "//components/keyed_service/ios", |
| 86 "//components/pref_registry", | 86 "//components/pref_registry", |
| 87 "//components/prefs", | 87 "//components/prefs", |
| 88 "//components/translate/core/browser", | 88 "//components/translate/core/browser", |
| 89 "//components/translate/core/common", | 89 "//components/translate/core/common", |
| 90 "//components/translate/ios/browser", | 90 "//components/translate/ios/browser", |
| 91 "//google_apis", |
| 91 "//ios/net", | 92 "//ios/net", |
| 92 "//ios/net", | 93 "//ios/net", |
| 93 "//ios/web", | 94 "//ios/web", |
| 94 "//ios/web:reload_type", | 95 "//ios/web:reload_type", |
| 95 "//ios/web:user_agent", | 96 "//ios/web:user_agent", |
| 96 "//ios/web:user_agent", | 97 "//ios/web:user_agent", |
| 97 "//ios/web/public/app", | 98 "//ios/web/public/app", |
| 98 "//net", | 99 "//net", |
| 99 "//net:extras", | 100 "//net:extras", |
| 100 "//ui/base", | 101 "//ui/base", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ] | 185 ] |
| 185 args = [ | 186 args = [ |
| 186 "license_file", | 187 "license_file", |
| 187 rebase_path(_license_path, root_build_dir), | 188 rebase_path(_license_path, root_build_dir), |
| 188 "--gn-target", | 189 "--gn-target", |
| 189 "//ios/web_view", | 190 "//ios/web_view", |
| 190 "--gn-out-dir", | 191 "--gn-out-dir", |
| 191 ".", | 192 ".", |
| 192 ] | 193 ] |
| 193 } | 194 } |
| OLD | NEW |