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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1058013006: Chromecast: make CAST_IS_DEBUG_BUILD to macro CAST_IS_DEBUG_BUILD(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@media-drm-delegate
Patch Set: rename bit Created 5 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 | chromecast/common/version.h.in » ('j') | chromecast/common/version.h.in » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'cast_is_debug_build%': 0,
10 'chromium_code': 1, 11 'chromium_code': 1,
11 'chromecast_branding%': 'Chromium', 12 'chromecast_branding%': 'Chromium',
12 'disable_display%': 0, 13 'disable_display%': 0,
13 'enable_default_cast_graphics%': 1, 14 'enable_default_cast_graphics%': 1,
14 'ozone_platform_cast%': 0, 15 'ozone_platform_cast%': 0,
15 'use_chromecast_webui%': 0, 16 'use_chromecast_webui%': 0,
16 }, 17 },
17 'includes': [ 18 'includes': [
18 'chromecast_tests.gypi', 19 'chromecast_tests.gypi',
19 ], 20 ],
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 'action': [ 336 'action': [
336 'python', 337 'python',
337 '<(version_py_path)', 338 '<(version_py_path)',
338 '-e', 'VERSION_FULL="<(version_full)"', 339 '-e', 'VERSION_FULL="<(version_full)"',
339 # CAST_BUILD_INCREMENTAL is taken from buildbot if available; 340 # CAST_BUILD_INCREMENTAL is taken from buildbot if available;
340 # otherwise, a dev string is used. 341 # otherwise, a dev string is used.
341 '-e', 'CAST_BUILD_INCREMENTAL="<!(echo ${CAST_BUILD_INCREMENTAL:="<! (date +%Y%m%d.%H%M%S)"})"', 342 '-e', 'CAST_BUILD_INCREMENTAL="<!(echo ${CAST_BUILD_INCREMENTAL:="<! (date +%Y%m%d.%H%M%S)"})"',
342 # CAST_BUILD_RELEASE is taken from cast_build_release file if exist; 343 # CAST_BUILD_RELEASE is taken from cast_build_release file if exist;
343 # otherwise, a dev string is used. 344 # otherwise, a dev string is used.
344 '-e', 'CAST_BUILD_RELEASE="<!(if test -f <(cast_build_release); then cat <(cast_build_release); else echo eng.${USER}; fi)"', 345 '-e', 'CAST_BUILD_RELEASE="<!(if test -f <(cast_build_release); then cat <(cast_build_release); else echo eng.${USER}; fi)"',
345 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" e lse 0', 346 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" o r <(cast_is_debug_build) == 1 else 0',
346 'common/version.h.in', 347 'common/version.h.in',
347 '<@(_outputs)', 348 '<@(_outputs)',
348 ], 349 ],
349 'includes': [ 350 'includes': [
350 '../build/util/version.gypi', 351 '../build/util/version.gypi',
351 ], 352 ],
352 }, 353 },
353 ], 354 ],
354 }, 355 },
355 ], # end of targets 356 ], # end of targets
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 ], 593 ],
593 'sources': [ 594 'sources': [
594 'graphics/cast_egl_platform_default.cc', 595 'graphics/cast_egl_platform_default.cc',
595 'graphics/graphics_properties_default.cc' 596 'graphics/graphics_properties_default.cc'
596 ], 597 ],
597 } 598 }
598 ] 599 ]
599 }], 600 }],
600 ], # end of conditions 601 ], # end of conditions
601 } 602 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/version.h.in » ('j') | chromecast/common/version.h.in » ('J')

Powered by Google App Engine
This is Rietveld 408576698