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

Side by Side Diff: webrtc/webrtc_examples.gyp

Issue 2460343002: Moving stun_prober target from webrtc/p2p to webrtc/examples (Closed)
Patch Set: Removed './' from deps path Created 4 years, 1 month 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/p2p/stunprober/main.cc ('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 'conditions': [ 9 'conditions': [
10 ['OS=="linux" or OS=="win"', { 10 ['OS=="linux" or OS=="win"', {
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 'java_in_dir': 'examples/androidtests', 458 'java_in_dir': 'examples/androidtests',
459 'is_test_apk': 1, 459 'is_test_apk': 1,
460 'test_type': 'instrumentation', 460 'test_type': 'instrumentation',
461 'test_runner_path': '<(DEPTH)/webrtc/build/android/test_runner.py', 461 'test_runner_path': '<(DEPTH)/webrtc/build/android/test_runner.py',
462 }, 462 },
463 'includes': [ 463 'includes': [
464 '../build/java_apk.gypi', 464 '../build/java_apk.gypi',
465 '../build/android/test_runner.gypi', 465 '../build/android/test_runner.gypi',
466 ], 466 ],
467 }, 467 },
468 {
469 'target_name': 'stun_prober',
470 'type': 'executable',
471 'dependencies': [
472 'p2p:libstunprober',
473 'p2p:rtc_p2p'
474 ],
475 'sources': [
476 'examples/stunprober/main.cc',
477 ],
478 },
468 ], # targets 479 ], # targets
469 }], # OS=="android" 480 }], # OS=="android"
470 ], 481 ],
471 } 482 }
OLDNEW
« no previous file with comments | « webrtc/p2p/stunprober/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698