Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: ppapi/shared_impl/BUILD.gn

Issue 1931513002: ppapi: PPB_VpnProvider: Implement Resource Stub (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vpn-api-messages
Patch Set: Remove CL dependency Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 6
7 component("shared_impl") { 7 component("shared_impl") {
8 output_name = "ppapi_shared" 8 output_name = "ppapi_shared"
9 9
10 sources = [ 10 sources = [
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "tracked_callback.cc", 111 "tracked_callback.cc",
112 "tracked_callback.h", 112 "tracked_callback.h",
113 "url_request_info_data.cc", 113 "url_request_info_data.cc",
114 "url_request_info_data.h", 114 "url_request_info_data.h",
115 "url_response_info_data.cc", 115 "url_response_info_data.cc",
116 "url_response_info_data.h", 116 "url_response_info_data.h",
117 "var.cc", 117 "var.cc",
118 "var.h", 118 "var.h",
119 "var_tracker.cc", 119 "var_tracker.cc",
120 "var_tracker.h", 120 "var_tracker.h",
121 "vpn_provider_util.cc",
122 "vpn_provider_util.h",
121 123
122 # TODO(viettrungluu): Split these out; it won"t be used in NaCl. 124 # TODO(viettrungluu): Split these out; it won"t be used in NaCl.
123 "private/net_address_private_impl.cc", 125 "private/net_address_private_impl.cc",
124 "private/net_address_private_impl.h", 126 "private/net_address_private_impl.h",
125 "private/net_address_private_impl_constants.cc", 127 "private/net_address_private_impl_constants.cc",
126 "private/ppb_x509_certificate_private_shared.cc", 128 "private/ppb_x509_certificate_private_shared.cc",
127 "private/ppb_x509_certificate_private_shared.h", 129 "private/ppb_x509_certificate_private_shared.h",
128 ] 130 ]
129 131
130 if (!is_nacl) { 132 if (!is_nacl) {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 ] 214 ]
213 deps = [ 215 deps = [
214 "//base/test:test_support", 216 "//base/test:test_support",
215 "//ipc", 217 "//ipc",
216 "//ipc:test_support", 218 "//ipc:test_support",
217 "//ppapi/proxy", 219 "//ppapi/proxy",
218 "//testing/gmock", 220 "//testing/gmock",
219 "//testing/gtest", 221 "//testing/gtest",
220 ] 222 ]
221 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698