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

Side by Side Diff: remoting/remoting.gyp

Issue 961323004: Add remoting and PPAPI tests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync tests Created 5 years, 9 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
« no previous file with comments | « remoting/protocol/BUILD.gn ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Set this to run the jscompile checks after building the webapp. 9 # Set this to run the jscompile checks after building the webapp.
10 'run_jscompile%': 1, 10 'run_jscompile%': 1,
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 '-g', '<(grit_out_dir)', 206 '-g', '<(grit_out_dir)',
207 '-x', '<(copy_output_dir)/.', 207 '-x', '<(copy_output_dir)/.',
208 '<@(remoting_locales)', 208 '<@(remoting_locales)',
209 ], 209 ],
210 } 210 }
211 ], 211 ],
212 'includes': [ '../build/grit_target.gypi' ], 212 'includes': [ '../build/grit_target.gypi' ],
213 }, # end of target 'remoting_resources' 213 }, # end of target 'remoting_resources'
214 214
215 { 215 {
216 # GN version: //remoting/base 216 # GN version: //remoting/base and //remoting/codec
217 'target_name': 'remoting_base', 217 'target_name': 'remoting_base',
218 'type': 'static_library', 218 'type': 'static_library',
219 'variables': { 'enable_wexit_time_destructors': 1, }, 219 'variables': { 'enable_wexit_time_destructors': 1, },
220 'dependencies': [ 220 'dependencies': [
221 '../base/base.gyp:base', 221 '../base/base.gyp:base',
222 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 222 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
223 '../media/media.gyp:media', 223 '../media/media.gyp:media',
224 '../media/media.gyp:shared_memory_support', 224 '../media/media.gyp:shared_memory_support',
225 '../net/net.gyp:net', 225 '../net/net.gyp:net',
226 '../third_party/libvpx/libvpx.gyp:libvpx', 226 '../third_party/libvpx/libvpx.gyp:libvpx',
(...skipping 11 matching lines...) Expand all
238 '../base/base.gyp:base', 238 '../base/base.gyp:base',
239 '../net/net.gyp:net', 239 '../net/net.gyp:net',
240 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 240 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
241 'proto/chromotocol.gyp:chromotocol_proto_lib', 241 'proto/chromotocol.gyp:chromotocol_proto_lib',
242 ], 242 ],
243 # This target needs a hard dependency because dependent targets 243 # This target needs a hard dependency because dependent targets
244 # depend on chromotocol_proto_lib for headers. 244 # depend on chromotocol_proto_lib for headers.
245 'hard_dependency': 1, 245 'hard_dependency': 1,
246 'sources': [ 246 'sources': [
247 '<@(remoting_base_sources)', 247 '<@(remoting_base_sources)',
248 '<@(remoting_codec_sources)',
248 ], 249 ],
249 }, # end of target 'remoting_base' 250 }, # end of target 'remoting_base'
250 251
251 { 252 {
252 # GN version: //remoting/protocol 253 # GN version: //remoting/protocol
253 'target_name': 'remoting_protocol', 254 'target_name': 'remoting_protocol',
254 'type': 'static_library', 255 'type': 'static_library',
255 'variables': { 'enable_wexit_time_destructors': 1, }, 256 'variables': { 'enable_wexit_time_destructors': 1, },
256 'dependencies': [ 257 'dependencies': [
257 '../base/base.gyp:base', 258 '../base/base.gyp:base',
258 '../crypto/crypto.gyp:crypto', 259 '../crypto/crypto.gyp:crypto',
259 '../jingle/jingle.gyp:jingle_glue', 260 '../jingle/jingle.gyp:jingle_glue',
260 '../jingle/jingle.gyp:notifier', 261 '../jingle/jingle.gyp:notifier',
261 '../net/net.gyp:net', 262 '../net/net.gyp:net',
262 '../third_party/libjingle/libjingle.gyp:libjingle', 263 '../third_party/libjingle/libjingle.gyp:libjingle',
263 'remoting_base', 264 'remoting_base',
264 ], 265 ],
265 'export_dependent_settings': [ 266 'export_dependent_settings': [
266 '../third_party/libjingle/libjingle.gyp:libjingle', 267 '../third_party/libjingle/libjingle.gyp:libjingle',
267 ], 268 ],
268 'sources': [ 269 'sources': [
269 '<@(remoting_protocol_sources)', 270 '<@(remoting_protocol_sources)',
270 ], 271 ],
271 }, # end of target 'remoting_protocol' 272 }, # end of target 'remoting_protocol'
272 ], # end of targets 273 ], # end of targets
273 } 274 }
OLDNEW
« no previous file with comments | « remoting/protocol/BUILD.gn ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698