| 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 source_set("translate") { | 5 source_set("translate") { |
| 6 visibility = [ | 6 visibility = [ |
| 7 "//ios/web_view", | 7 "//ios/web_view", |
| 8 "//ios/web_view/internal/*", | 8 "//ios/web_view/internal/*", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//components/keyed_service/core", | 22 "//components/keyed_service/core", |
| 23 "//components/keyed_service/ios", | 23 "//components/keyed_service/ios", |
| 24 "//components/prefs", | 24 "//components/prefs", |
| 25 "//components/translate/core/browser", | 25 "//components/translate/core/browser", |
| 26 "//components/translate/core/common", | 26 "//components/translate/core/common", |
| 27 "//components/translate/ios/browser", | 27 "//components/translate/ios/browser", |
| 28 "//ios/web", | 28 "//ios/web", |
| 29 "//ios/web_view/public", | 29 "//ios/web_view/public", |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 |
| 33 configs += [ "//build/config/compiler:enable_arc" ] |
| 32 } | 34 } |
| OLD | NEW |