| 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("native_app_launcher") { | 5 source_set("native_app_launcher") { |
| 6 sources = [ | 6 sources = [ |
| 7 "ios_appstore_ids.h", | 7 "ios_appstore_ids.h", |
| 8 "ios_appstore_ids.mm", | 8 "ios_appstore_ids.mm", |
| 9 "native_app_infobar_controller.h", | 9 "native_app_infobar_controller.h", |
| 10 "native_app_infobar_controller.mm", | 10 "native_app_infobar_controller.mm", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 sources = [ | 30 sources = [ |
| 31 "native_app_infobar_controller_unittest.mm", | 31 "native_app_infobar_controller_unittest.mm", |
| 32 "native_app_infobar_delegate_unittest.mm", | 32 "native_app_infobar_delegate_unittest.mm", |
| 33 ] | 33 ] |
| 34 deps = [ | 34 deps = [ |
| 35 ":native_app_launcher", | 35 ":native_app_launcher", |
| 36 "//base", | 36 "//base", |
| 37 "//base/test:test_support", | 37 "//base/test:test_support", |
| 38 "//components/infobars/core", | 38 "//components/infobars/core", |
| 39 "//ios/chrome/browser", | 39 "//ios/chrome/browser", |
| 40 "//ios/chrome/browser/net:test_support", | |
| 41 "//ios/chrome/test:test_support", | 40 "//ios/chrome/test:test_support", |
| 42 "//ios/public/provider/chrome/browser", | 41 "//ios/public/provider/chrome/browser", |
| 43 "//ios/public/provider/chrome/browser:test_support", | 42 "//ios/public/provider/chrome/browser:test_support", |
| 44 "//ios/public/provider/chrome/browser/native_app_launcher", | 43 "//ios/public/provider/chrome/browser/native_app_launcher", |
| 45 "//ios/web", | 44 "//ios/web", |
| 46 "//ios/web:test_support", | 45 "//ios/web:test_support", |
| 47 "//net:test_support", | 46 "//net:test_support", |
| 48 "//testing/gmock", | 47 "//testing/gmock", |
| 49 "//testing/gtest", | 48 "//testing/gtest", |
| 50 "//url", | 49 "//url", |
| 51 ] | 50 ] |
| 52 } | 51 } |
| OLD | NEW |