Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("native_app_launcher") { | |
| 6 sources = [ | |
| 7 "ios_appstore_ids.h", | |
| 8 "ios_appstore_ids.mm", | |
| 9 "native_app_infobar_controller.h", | |
| 10 "native_app_infobar_controller.mm", | |
| 11 "native_app_infobar_delegate.h", | |
| 12 "native_app_infobar_delegate.mm", | |
| 13 "native_app_navigation_controller_protocol.h", | |
| 14 ] | |
| 15 deps = [ | |
| 16 "//base", | |
| 17 "//components/infobars/core", | |
| 18 "//ios/chrome/app/strings", | |
| 19 "//ios/chrome/browser/infobars", | |
| 20 "//ios/public/provider/chrome/browser", | |
| 21 "//ui/base:base", | |
|
sdefresne
2016/11/21 08:46:04
Just "//ui/base"
sczs1
2016/11/21 17:43:00
Done.
| |
| 22 "//url:url", | |
|
sdefresne
2016/11/21 08:46:04
Just "//url"
sczs1
2016/11/21 17:43:00
Done.
| |
| 23 ] | |
| 24 } | |
| 25 | |
| 26 source_set("unit_tests") { | |
| 27 testonly = true | |
| 28 sources = [ | |
| 29 "native_app_infobar_controller_unittest.mm", | |
| 30 "native_app_infobar_delegate_unittest.mm", | |
| 31 ] | |
| 32 deps = [ | |
| 33 ":native_app_launcher", | |
| 34 "//base", | |
| 35 "//base/test:test_support", | |
| 36 "//components/infobars/core", | |
| 37 "//ios/chrome/browser", | |
| 38 "//ios/chrome/browser/net:test_support", | |
| 39 "//ios/chrome/test:test_support", | |
| 40 "//ios/public/provider/chrome/browser", | |
| 41 "//ios/public/provider/chrome/browser:test_support", | |
| 42 "//ios/web", | |
| 43 "//ios/web:test_support", | |
| 44 "//net:test_support", | |
| 45 "//testing/gmock", | |
| 46 "//testing/gtest", | |
| 47 "//url", | |
| 48 ] | |
| 49 } | |
| OLD | NEW |