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

Side by Side Diff: all.gyp

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 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 | « no previous file | talk/examples/OWNERS » ('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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 { 9 {
10 'variables': { 10 'variables': {
11 'include_examples%': 1, 11 'include_examples%': 1,
12 'include_tests%': 1, 12 'include_tests%': 1,
13 'webrtc_root_additional_dependencies': [], 13 'webrtc_root_additional_dependencies': [],
14 }, 14 },
15 'targets': [ 15 'targets': [
16 { 16 {
17 'target_name': 'All', 17 'target_name': 'All',
18 'type': 'none', 18 'type': 'none',
19 'dependencies': [ 19 'dependencies': [
20 'webrtc/webrtc.gyp:*', 20 'webrtc/webrtc.gyp:*',
21 'talk/libjingle.gyp:*', 21 'talk/libjingle.gyp:*',
22 '<@(webrtc_root_additional_dependencies)', 22 '<@(webrtc_root_additional_dependencies)',
23 ], 23 ],
24 'conditions': [ 24 'conditions': [
25 ['include_examples==1', { 25 ['include_examples==1', {
26 'dependencies': [ 26 'dependencies': [
27 'talk/libjingle_examples.gyp:*', 27 'webrtc/libjingle_examples.gyp:*',
28 'webrtc/webrtc_examples.gyp:*', 28 'webrtc/webrtc_examples.gyp:*',
29 ], 29 ],
30 }], 30 }],
31 ['include_tests==1', { 31 ['include_tests==1', {
32 'dependencies': [ 32 'dependencies': [
33 'talk/libjingle_tests.gyp:*', 33 'talk/libjingle_tests.gyp:*',
34 ], 34 ],
35 }], 35 }],
36 ], 36 ],
37 }, 37 },
38 ], 38 ],
39 } 39 }
OLDNEW
« no previous file with comments | « no previous file | talk/examples/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698