Chromium Code Reviews| Index: ios/chrome/browser/native_app_launcher/BUILD.gn |
| diff --git a/ios/chrome/browser/native_app_launcher/BUILD.gn b/ios/chrome/browser/native_app_launcher/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..603a031e9e8a2b45ae854a484ed8f5772fd4e063 |
| --- /dev/null |
| +++ b/ios/chrome/browser/native_app_launcher/BUILD.gn |
| @@ -0,0 +1,49 @@ |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +source_set("native_app_launcher") { |
| + sources = [ |
| + "ios_appstore_ids.h", |
| + "ios_appstore_ids.mm", |
| + "native_app_infobar_controller.h", |
| + "native_app_infobar_controller.mm", |
| + "native_app_infobar_delegate.h", |
| + "native_app_infobar_delegate.mm", |
| + "native_app_navigation_controller_protocol.h", |
| + ] |
| + deps = [ |
| + "//base", |
| + "//components/infobars/core", |
| + "//ios/chrome/app/strings", |
| + "//ios/chrome/browser/infobars", |
| + "//ios/public/provider/chrome/browser", |
| + "//ui/base:base", |
|
sdefresne
2016/11/21 08:46:04
Just "//ui/base"
sczs1
2016/11/21 17:43:00
Done.
|
| + "//url:url", |
|
sdefresne
2016/11/21 08:46:04
Just "//url"
sczs1
2016/11/21 17:43:00
Done.
|
| + ] |
| +} |
| + |
| +source_set("unit_tests") { |
| + testonly = true |
| + sources = [ |
| + "native_app_infobar_controller_unittest.mm", |
| + "native_app_infobar_delegate_unittest.mm", |
| + ] |
| + deps = [ |
| + ":native_app_launcher", |
| + "//base", |
| + "//base/test:test_support", |
| + "//components/infobars/core", |
| + "//ios/chrome/browser", |
| + "//ios/chrome/browser/net:test_support", |
| + "//ios/chrome/test:test_support", |
| + "//ios/public/provider/chrome/browser", |
| + "//ios/public/provider/chrome/browser:test_support", |
| + "//ios/web", |
| + "//ios/web:test_support", |
| + "//net:test_support", |
| + "//testing/gmock", |
| + "//testing/gtest", |
| + "//url", |
| + ] |
| +} |