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

Side by Side Diff: webrtc/webrtc_examples.gyp

Issue 1610243002: Move talk/app/webrtc to webrtc/api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed processing of api.gyp for Chromium builds Created 4 years, 10 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 | « webrtc/webrtc.gyp ('k') | no next file » | 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 WebRTC Project Authors. All rights reserved. 1 # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../talk/build/common.gypi', 10 '../talk/build/common.gypi',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'type': 'executable', 71 'type': 'executable',
72 'sources': [ 72 'sources': [
73 'examples/peerconnection/client/conductor.cc', 73 'examples/peerconnection/client/conductor.cc',
74 'examples/peerconnection/client/conductor.h', 74 'examples/peerconnection/client/conductor.h',
75 'examples/peerconnection/client/defaults.cc', 75 'examples/peerconnection/client/defaults.cc',
76 'examples/peerconnection/client/defaults.h', 76 'examples/peerconnection/client/defaults.h',
77 'examples/peerconnection/client/peer_connection_client.cc', 77 'examples/peerconnection/client/peer_connection_client.cc',
78 'examples/peerconnection/client/peer_connection_client.h', 78 'examples/peerconnection/client/peer_connection_client.h',
79 ], 79 ],
80 'dependencies': [ 80 'dependencies': [
81 '../talk/libjingle.gyp:libjingle_peerconnection', 81 'api/api.gyp:libjingle_peerconnection',
82 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult', 82 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult',
83 ], 83 ],
84 'conditions': [ 84 'conditions': [
85 ['build_json==1', { 85 ['build_json==1', {
86 'dependencies': [ 86 'dependencies': [
87 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', 87 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
88 ], 88 ],
89 }], 89 }],
90 # TODO(ronghuawu): Move these files to a win/ directory then they 90 # TODO(ronghuawu): Move these files to a win/ directory then they
91 # can be excluded automatically. 91 # can be excluded automatically.
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 }, # target socketrocket 357 }, # target socketrocket
358 ], # targets 358 ], # targets
359 }], # OS=="ios" or (OS=="mac" and target_arch!="ia32") 359 }], # OS=="ios" or (OS=="mac" and target_arch!="ia32")
360 360
361 ['OS=="android"', { 361 ['OS=="android"', {
362 'targets': [ 362 'targets': [
363 { 363 {
364 'target_name': 'AppRTCDemo', 364 'target_name': 'AppRTCDemo',
365 'type': 'none', 365 'type': 'none',
366 'dependencies': [ 366 'dependencies': [
367 '../talk/libjingle.gyp:libjingle_peerconnection_java', 367 'api/api.gyp:libjingle_peerconnection_java',
368 ], 368 ],
369 'variables': { 369 'variables': {
370 'apk_name': 'AppRTCDemo', 370 'apk_name': 'AppRTCDemo',
371 'java_in_dir': 'examples/androidapp', 371 'java_in_dir': 'examples/androidapp',
372 'has_java_resources': 1, 372 'has_java_resources': 1,
373 'resource_dir': 'examples/androidapp/res', 373 'resource_dir': 'examples/androidapp/res',
374 'R_package': 'org.appspot.apprtc', 374 'R_package': 'org.appspot.apprtc',
375 'R_package_relpath': 'org/appspot/apprtc', 375 'R_package_relpath': 'org/appspot/apprtc',
376 'input_jars_paths': [ 376 'input_jars_paths': [
377 'examples/androidapp/third_party/autobanh/autobanh.jar', 377 'examples/androidapp/third_party/autobanh/autobanh.jar',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 'apk_name': 'AppRTCDemoTest', 410 'apk_name': 'AppRTCDemoTest',
411 'java_in_dir': 'examples/androidtests', 411 'java_in_dir': 'examples/androidtests',
412 'is_test_apk': 1, 412 'is_test_apk': 1,
413 }, 413 },
414 'includes': [ '../build/java_apk.gypi' ], 414 'includes': [ '../build/java_apk.gypi' ],
415 }, 415 },
416 ], # targets 416 ], # targets
417 }], # OS=="android" 417 }], # OS=="android"
418 ], 418 ],
419 } 419 }
OLDNEW
« no previous file with comments | « webrtc/webrtc.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698