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

Side by Side Diff: all.gyp

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased 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 | « PRESUBMIT.py ('k') | sync_chromium.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2 #
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
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'variables': {
11 'include_examples%': 1,
12 'include_tests%': 1,
13 },
14 'includes': [
15 'webrtc/build/common.gypi',
16 ],
17 'targets': [
18 {
19 'target_name': 'All',
20 'type': 'none',
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/stats/stats.gyp:*',
32 'webrtc/system_wrappers/system_wrappers.gyp:*',
33 'webrtc/tools/tools.gyp:*',
34 'webrtc/voice_engine/voice_engine.gyp:*',
35 'webrtc/webrtc.gyp:*',
36 '<(webrtc_vp8_dir)/vp8.gyp:*',
37 '<(webrtc_vp9_dir)/vp9.gyp:*',
38 ],
39 'conditions': [
40 ['OS=="android" and build_with_chromium==0', {
41 'dependencies': [
42 # No longer supported, please refer to GN targets.
43 #'webrtc/api/api_java.gyp:*',
44 ],
45 }],
46 ['include_tests==1', {
47 'includes': [
48 'webrtc/webrtc_tests.gypi',
49 ],
50 'dependencies': [
51 'webrtc/test/test.gyp:*',
52 ],
53 }],
54 ['include_examples==1', {
55 'dependencies': [
56 'webrtc/webrtc_examples.gyp:*',
57 ],
58 }],
59 ['(OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7"))', {
60 'dependencies': [
61 'webrtc/sdk/sdk.gyp:*',
62 ],
63 }],
64 ],
65 },
66 ],
67 }
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | sync_chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698