Chromium Code Reviews| Index: ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn |
| diff --git a/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn b/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2c216a1b8e89a27cd06be52c1fa4f49402063807 |
| --- /dev/null |
| +++ b/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn |
| @@ -0,0 +1,28 @@ |
| +# 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") { |
| + configs += [ "//build/config/compiler:enable_arc" ] |
|
sdefresne
2016/11/28 09:28:12
nit: can you move "configs" at the end of "source_
sczs1
2016/11/28 19:16:30
Done.
|
| + sources = [ |
| + "native_app_metadata.h", |
| + "native_app_types.h", |
| + "native_app_whitelist_manager.h", |
| + ] |
| +} |
| + |
| +source_set("test_support") { |
| + configs += [ "//build/config/compiler:enable_arc" ] |
| + testonly = true |
| + sources = [ |
| + "fake_native_app_metadata.h", |
| + "fake_native_app_metadata.mm", |
| + "fake_native_app_whitelist_manager.h", |
| + "fake_native_app_whitelist_manager.mm", |
| + ] |
| + deps = [ |
| + ":native_app_launcher", |
| + "//base", |
| + "//url", |
| + ] |
| +} |