OLD | NEW |
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 Loading... |
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 '<@(libjingle_tests_additional_deps)', | 83 '<@(libjingle_tests_additional_deps)', |
84 ], | 84 ], |
85 'conditions': [ | 85 'conditions': [ |
86 ['build_json==1', { | 86 ['build_json==1', { |
87 'dependencies': [ | 87 'dependencies': [ |
88 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', | 88 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', |
89 ], | 89 ], |
90 }], | 90 }], |
91 # TODO(ronghuawu): Move these files to a win/ directory then they | 91 # TODO(ronghuawu): Move these files to a win/ directory then they |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 }, # target socketrocket | 358 }, # target socketrocket |
359 ], # targets | 359 ], # targets |
360 }], # OS=="ios" or (OS=="mac" and target_arch!="ia32") | 360 }], # OS=="ios" or (OS=="mac" and target_arch!="ia32") |
361 | 361 |
362 ['OS=="android"', { | 362 ['OS=="android"', { |
363 'targets': [ | 363 'targets': [ |
364 { | 364 { |
365 'target_name': 'AppRTCDemo', | 365 'target_name': 'AppRTCDemo', |
366 'type': 'none', | 366 'type': 'none', |
367 'dependencies': [ | 367 'dependencies': [ |
368 '../talk/libjingle.gyp:libjingle_peerconnection_java', | 368 'api/api.gyp:libjingle_peerconnection_java', |
369 ], | 369 ], |
370 'variables': { | 370 'variables': { |
371 'apk_name': 'AppRTCDemo', | 371 'apk_name': 'AppRTCDemo', |
372 'java_in_dir': 'examples/androidapp', | 372 'java_in_dir': 'examples/androidapp', |
373 'has_java_resources': 1, | 373 'has_java_resources': 1, |
374 'resource_dir': 'examples/androidapp/res', | 374 'resource_dir': 'examples/androidapp/res', |
375 'R_package': 'org.appspot.apprtc', | 375 'R_package': 'org.appspot.apprtc', |
376 'R_package_relpath': 'org/appspot/apprtc', | 376 'R_package_relpath': 'org/appspot/apprtc', |
377 'input_jars_paths': [ | 377 'input_jars_paths': [ |
378 'examples/androidapp/third_party/autobanh/autobanh.jar', | 378 'examples/androidapp/third_party/autobanh/autobanh.jar', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 'apk_name': 'AppRTCDemoTest', | 411 'apk_name': 'AppRTCDemoTest', |
412 'java_in_dir': 'examples/androidtests', | 412 'java_in_dir': 'examples/androidtests', |
413 'is_test_apk': 1, | 413 'is_test_apk': 1, |
414 }, | 414 }, |
415 'includes': [ '../build/java_apk.gypi' ], | 415 'includes': [ '../build/java_apk.gypi' ], |
416 }, | 416 }, |
417 ], # targets | 417 ], # targets |
418 }], # OS=="android" | 418 }], # OS=="android" |
419 ], | 419 ], |
420 } | 420 } |
OLD | NEW |