Skip to content

Commit

Permalink
Add a gn implementation for //ios/public/provider/web target.
Browse files Browse the repository at this point in the history
BUG=459705

Review URL: https://codereview.chromium.org/1443023002

Cr-Commit-Position: refs/heads/master@{#359812}
  • Loading branch information
sdefresne authored and Commit bot committed Nov 16, 2015
1 parent 48a12b9 commit 89308c9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ group("both_gn_and_gyp") {
} else {
deps += [
"//ios/net:ios_net_unittests",
"//ios/public/provider/web",
"//ios/testing:ocmock_support_unittest",
"//ios/web:ios_web_unittests",
]
Expand Down
1 change: 1 addition & 0 deletions ios/provider/ios_provider_web.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
},
'targets': [
{
# GN version: //ios/public/provider/web
'target_name': 'ios_provider_web',
'type': 'static_library',
'include_dirs': [
Expand Down
21 changes: 21 additions & 0 deletions ios/public/provider/web/BUILD.gn
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2015 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("web") {
sources = [
"web_controller_provider.h",
"web_controller_provider.mm",
"web_ui_ios.h",
"web_ui_ios_controller.cc",
"web_ui_ios_controller.h",
"web_ui_ios_controller_factory.h",
"web_ui_ios_message_handler.cc",
"web_ui_ios_message_handler.h",
]

deps = [
"//base",
"//ios/web",
]
}

0 comments on commit 89308c9

Please sign in to comment.