| 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 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "after_translate_infobar_controller.h", | 8 "after_translate_infobar_controller.h", |
| 9 "after_translate_infobar_controller.mm", | 9 "after_translate_infobar_controller.mm", |
| 10 "before_translate_infobar_controller.h", | 10 "before_translate_infobar_controller.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 ] | 29 ] |
| 30 deps = [ | 30 deps = [ |
| 31 "//base", | 31 "//base", |
| 32 "//components/infobars/core", | 32 "//components/infobars/core", |
| 33 "//components/keyed_service/core", | 33 "//components/keyed_service/core", |
| 34 "//components/keyed_service/ios", | 34 "//components/keyed_service/ios", |
| 35 "//components/metrics", | 35 "//components/metrics", |
| 36 "//components/metrics/proto", | 36 "//components/metrics/proto", |
| 37 "//components/prefs", | 37 "//components/prefs", |
| 38 "//components/strings", | 38 "//components/strings", |
| 39 "//components/sync", |
| 39 "//components/translate/core/browser", | 40 "//components/translate/core/browser", |
| 40 "//components/translate/core/common", | 41 "//components/translate/core/common", |
| 41 "//components/translate/ios/browser", | 42 "//components/translate/ios/browser", |
| 42 "//components/web_resource", | 43 "//components/web_resource", |
| 43 "//ios/chrome/app/strings", | 44 "//ios/chrome/app/strings", |
| 44 "//ios/chrome/app/theme", | 45 "//ios/chrome/app/theme", |
| 45 "//ios/chrome/browser", | 46 "//ios/chrome/browser", |
| 46 "//ios/chrome/browser/browser_state", | 47 "//ios/chrome/browser/browser_state", |
| 47 "//ios/chrome/browser/infobars", | 48 "//ios/chrome/browser/infobars", |
| 49 "//ios/chrome/browser/sync", |
| 48 "//ios/chrome/browser/ui/infobars", | 50 "//ios/chrome/browser/ui/infobars", |
| 49 "//ios/web", | 51 "//ios/web", |
| 50 "//ui/base", | 52 "//ui/base", |
| 51 "//ui/gfx", | 53 "//ui/gfx", |
| 52 "//url", | 54 "//url", |
| 53 ] | 55 ] |
| 54 | 56 |
| 55 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ] | 57 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ] |
| 56 } | 58 } |
| 57 | 59 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "//ios/chrome/test/earl_grey:test_support", | 106 "//ios/chrome/test/earl_grey:test_support", |
| 105 "//ios/testing:ios_test_support", | 107 "//ios/testing:ios_test_support", |
| 106 "//ios/third_party/earl_grey", | 108 "//ios/third_party/earl_grey", |
| 107 "//ios/web/public/test", | 109 "//ios/web/public/test", |
| 108 "//ios/web/public/test/http_server", | 110 "//ios/web/public/test/http_server", |
| 109 "//net", | 111 "//net", |
| 110 "//ui/base", | 112 "//ui/base", |
| 111 ] | 113 ] |
| 112 libs = [ "XCTest.framework" ] | 114 libs = [ "XCTest.framework" ] |
| 113 } | 115 } |
| OLD | NEW |