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

Side by Side Diff: build/all.gyp

Issue 723793002: Add "envoy" GYP variable for pulling in envoy targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | build/common.gypi » ('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) 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ['chromeos==1 or OS=="linux" or OS=="win"', { 269 ['chromeos==1 or OS=="linux" or OS=="win"', {
270 'dependencies': [ 270 'dependencies': [
271 '../extensions/shell/app_shell.gyp:*', 271 '../extensions/shell/app_shell.gyp:*',
272 ], 272 ],
273 }], 273 }],
274 ['chromeos==1', { 274 ['chromeos==1', {
275 'dependencies': [ 275 'dependencies': [
276 '../athena/main/athena_main.gyp:*', 276 '../athena/main/athena_main.gyp:*',
277 ], 277 ],
278 }], 278 }],
279 ['envoy==1', {
280 'dependencies': [
281 '../envoy/envoy.gyp:*',
282 ],
283 }],
279 ], 284 ],
280 }, # target_name: All 285 }, # target_name: All
281 { 286 {
282 'target_name': 'All_syzygy', 287 'target_name': 'All_syzygy',
283 'type': 'none', 288 'type': 'none',
284 'conditions': [ 289 'conditions': [
285 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' 290 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and '
286 '(syzyasan==1 or syzygy_optimize==1)', { 291 '(syzyasan==1 or syzygy_optimize==1)', {
287 'dependencies': [ 292 'dependencies': [
288 '../chrome/installer/mini_installer_syzygy.gyp:*', 293 '../chrome/installer/mini_installer_syzygy.gyp:*',
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 'dependencies': [ 1367 'dependencies': [
1363 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1368 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1364 '../ui/views/views.gyp:views', 1369 '../ui/views/views.gyp:views',
1365 '../ui/views/views.gyp:views_unittests', 1370 '../ui/views/views.gyp:views_unittests',
1366 ], 1371 ],
1367 }, # target_name: macviews_builder 1372 }, # target_name: macviews_builder
1368 ], # targets 1373 ], # targets
1369 }], # os=='mac' and toolkit_views==1 1374 }], # os=='mac' and toolkit_views==1
1370 ], # conditions 1375 ], # conditions
1371 } 1376 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698