| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//ios/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 8 sources = [ | 9 sources = [ |
| 9 "ios_translate_driver.h", | 10 "ios_translate_driver.h", |
| 10 "ios_translate_driver.mm", | 11 "ios_translate_driver.mm", |
| 11 "js_language_detection_manager.h", | 12 "js_language_detection_manager.h", |
| 12 "js_language_detection_manager.mm", | 13 "js_language_detection_manager.mm", |
| 13 "js_translate_manager.h", | 14 "js_translate_manager.h", |
| 14 "js_translate_manager.mm", | 15 "js_translate_manager.mm", |
| 15 "language_detection_controller.h", | 16 "language_detection_controller.h", |
| 16 "language_detection_controller.mm", | 17 "language_detection_controller.mm", |
| 17 "string_clipping_util.cc", | 18 "string_clipping_util.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//components/prefs:test_support", | 57 "//components/prefs:test_support", |
| 57 "//components/resources", | 58 "//components/resources", |
| 58 "//components/translate/core/common", | 59 "//components/translate/core/common", |
| 59 "//ios/web:test_support", | 60 "//ios/web:test_support", |
| 60 "//testing/gtest", | 61 "//testing/gtest", |
| 61 "//third_party/ocmock", | 62 "//third_party/ocmock", |
| 62 "//ui/base", | 63 "//ui/base", |
| 63 "//url", | 64 "//url", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| OLD | NEW |