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

Side by Side Diff: build/all.gyp

Issue 223143004: Add chromecast_build gyp variable and add rules when the variable is set to 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add directfb as a new dependency in install-build-deps.sh for building chromecast Created 6 years, 8 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 | build/common.gypi » ('j') | build/common.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. Only used on Android. 8 # compilation targets to 'All'. Only used on Android.
9 'android_app_targets%': [], 9 'android_app_targets%': [],
10 }, 10 },
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 '../chrome/chrome.gyp:linux_packages_<(channel)', 140 '../chrome/chrome.gyp:linux_packages_<(channel)',
141 ], 141 ],
142 }], 142 }],
143 ['enable_ipc_fuzzer==1', { 143 ['enable_ipc_fuzzer==1', {
144 'dependencies': [ 144 'dependencies': [
145 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', 145 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*',
146 ], 146 ],
147 }], 147 }],
148 ], 148 ],
149 }], 149 }],
150 ['chromecast==1', {
151 'dependencies': [
152 '../chromecast/chromecast.gyp:*',
153 ],
154 }],
150 ['use_x11==1', { 155 ['use_x11==1', {
151 'dependencies': [ 156 'dependencies': [
152 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', 157 '../tools/xdisplaycheck/xdisplaycheck.gyp:*',
153 ], 158 ],
154 }], 159 }],
155 ['OS=="win"', { 160 ['OS=="win"', {
156 'conditions': [ 161 'conditions': [
157 ['win_use_allocator_shim==1', { 162 ['win_use_allocator_shim==1', {
158 'dependencies': [ 163 'dependencies': [
159 '../base/allocator/allocator.gyp:*', 164 '../base/allocator/allocator.gyp:*',
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 # http://crbug.com/157234 1241 # http://crbug.com/157234
1237 #'../chrome/chrome.gyp:sync_integration_tests_run', 1242 #'../chrome/chrome.gyp:sync_integration_tests_run',
1238 '../chrome/chrome.gyp:unit_tests_run', 1243 '../chrome/chrome.gyp:unit_tests_run',
1239 '../net/net.gyp:net_unittests_run', 1244 '../net/net.gyp:net_unittests_run',
1240 ], 1245 ],
1241 }, # target_name: chromium_swarm_tests 1246 }, # target_name: chromium_swarm_tests
1242 ], 1247 ],
1243 }], 1248 }],
1244 ], # conditions 1249 ], # conditions
1245 } 1250 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698