| 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 sources = [ | 6 sources = [ |
| 7 "after_translate_infobar_controller.h", | 7 "after_translate_infobar_controller.h", |
| 8 "after_translate_infobar_controller.mm", | 8 "after_translate_infobar_controller.mm", |
| 9 "before_translate_infobar_controller.h", | 9 "before_translate_infobar_controller.h", |
| 10 "before_translate_infobar_controller.mm", | 10 "before_translate_infobar_controller.mm", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "//components/strings", | 29 "//components/strings", |
| 30 "//components/translate/core/browser", | 30 "//components/translate/core/browser", |
| 31 "//components/translate/core/common", | 31 "//components/translate/core/common", |
| 32 "//components/translate/ios/browser", | 32 "//components/translate/ios/browser", |
| 33 "//components/web_resource", | 33 "//components/web_resource", |
| 34 "//ios/chrome/app/strings", | 34 "//ios/chrome/app/strings", |
| 35 "//ios/chrome/app/theme", | 35 "//ios/chrome/app/theme", |
| 36 "//ios/chrome/browser", | 36 "//ios/chrome/browser", |
| 37 "//ios/chrome/browser/browser_state", | 37 "//ios/chrome/browser/browser_state", |
| 38 "//ios/chrome/browser/infobars", | 38 "//ios/chrome/browser/infobars", |
| 39 "//ios/public/provider/chrome/browser", | 39 "//ios/chrome/browser/ui/infobars", |
| 40 "//ios/public/provider/chrome/browser/ui", | |
| 41 "//ios/web", | 40 "//ios/web", |
| 42 "//ui/base", | 41 "//ui/base", |
| 43 "//ui/gfx", | 42 "//ui/gfx", |
| 44 "//url", | 43 "//url", |
| 45 ] | 44 ] |
| 46 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ] | 45 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ] |
| 47 } | 46 } |
| 48 | 47 |
| 49 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 50 testonly = true | 49 testonly = true |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//ios/chrome/test/app:test_support", | 83 "//ios/chrome/test/app:test_support", |
| 85 "//ios/chrome/test/earl_grey:test_support", | 84 "//ios/chrome/test/earl_grey:test_support", |
| 86 "//ios/testing:ios_test_support", | 85 "//ios/testing:ios_test_support", |
| 87 "//ios/third_party/earl_grey", | 86 "//ios/third_party/earl_grey", |
| 88 "//ios/web:test_support", | 87 "//ios/web:test_support", |
| 89 "//net", | 88 "//net", |
| 90 "//ui/base", | 89 "//ui/base", |
| 91 ] | 90 ] |
| 92 libs = [ "XCTest.framework" ] | 91 libs = [ "XCTest.framework" ] |
| 93 } | 92 } |
| OLD | NEW |