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

Side by Side Diff: all.gyp

Issue 2060873002: Remove webrtc_all target (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added *.gyp to OWNERS Created 4 years, 6 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 | « OWNERS ('k') | webrtc/webrtc.gyp » ('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 }, 13 },
14 'includes': [
15 'webrtc/build/common.gypi',
16 ],
14 'targets': [ 17 'targets': [
15 { 18 {
16 'target_name': 'All', 19 'target_name': 'All',
17 'type': 'none', 20 'type': 'none',
18 'dependencies': [ 21 'dependencies': [
22 'webrtc/api/api.gyp:*',
23 'webrtc/base/base.gyp:*',
24 'webrtc/common.gyp:*',
25 'webrtc/common_audio/common_audio.gyp:*',
26 'webrtc/common_video/common_video.gyp:*',
27 'webrtc/media/media.gyp:*',
28 'webrtc/modules/modules.gyp:*',
29 'webrtc/p2p/p2p.gyp:*',
30 'webrtc/pc/pc.gyp:*',
31 'webrtc/system_wrappers/system_wrappers.gyp:*',
32 'webrtc/tools/tools.gyp:*',
33 'webrtc/voice_engine/voice_engine.gyp:*',
19 'webrtc/webrtc.gyp:*', 34 'webrtc/webrtc.gyp:*',
35 '<(webrtc_vp8_dir)/vp8.gyp:*',
36 '<(webrtc_vp9_dir)/vp9.gyp:*',
20 ], 37 ],
21 'conditions': [ 38 'conditions': [
39 ['include_tests==1', {
40 'includes': [
41 'webrtc/webrtc_tests.gypi',
42 ],
43 'dependencies': [
44 'webrtc/api/api_tests.gyp:*',
45 'webrtc/common_video/common_video_unittests.gyp:*',
46 'webrtc/system_wrappers/system_wrappers_tests.gyp:*',
47 'webrtc/test/metrics.gyp:*',
48 'webrtc/test/test.gyp:*',
49 ],
50 }],
22 ['include_examples==1', { 51 ['include_examples==1', {
23 'dependencies': [ 52 'dependencies': [
24 'webrtc/webrtc_examples.gyp:*', 53 'webrtc/webrtc_examples.gyp:*',
25 ], 54 ],
26 }], 55 }],
56 ['(OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7"))', {
57 'dependencies': [
58 'webrtc/sdk/sdk.gyp:*',
59 ],
60 }],
27 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { 61 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
28 'dependencies': [ 62 'dependencies': [
29 'talk/app/webrtc/legacy_objc_api.gyp:*', 63 'talk/app/webrtc/legacy_objc_api.gyp:*',
30 ], 64 ],
31 'conditions': [ 65 'conditions': [
32 ['include_tests==1', { 66 ['include_tests==1', {
33 'dependencies': [ 67 'dependencies': [
34 'talk/app/webrtc/legacy_objc_api_tests.gyp:*', 68 'talk/app/webrtc/legacy_objc_api_tests.gyp:*',
35 ], 69 ],
36 }], 70 }],
37 ], 71 ],
38 }], 72 }],
39 ], 73 ],
40 }, 74 },
41 ], 75 ],
42 } 76 }
OLDNEW
« no previous file with comments | « OWNERS ('k') | webrtc/webrtc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698