| OLD | NEW |
| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 'action': [ | 330 'action': [ |
| 330 'python', | 331 'python', |
| 331 '<(version_py_path)', | 332 '<(version_py_path)', |
| 332 '-e', 'VERSION_FULL="<(version_full)"', | 333 '-e', 'VERSION_FULL="<(version_full)"', |
| 333 # CAST_BUILD_INCREMENTAL is taken from buildbot if available; | 334 # CAST_BUILD_INCREMENTAL is taken from buildbot if available; |
| 334 # otherwise, a dev string is used. | 335 # otherwise, a dev string is used. |
| 335 '-e', 'CAST_BUILD_INCREMENTAL="<!(echo ${CAST_BUILD_INCREMENTAL:="<!
(date +%Y%m%d.%H%M%S)"})"', | 336 '-e', 'CAST_BUILD_INCREMENTAL="<!(echo ${CAST_BUILD_INCREMENTAL:="<!
(date +%Y%m%d.%H%M%S)"})"', |
| 336 # CAST_BUILD_RELEASE is taken from cast_build_release file if exist; | 337 # CAST_BUILD_RELEASE is taken from cast_build_release file if exist; |
| 337 # otherwise, a dev string is used. | 338 # otherwise, a dev string is used. |
| 338 '-e', 'CAST_BUILD_RELEASE="<!(if test -f <(cast_build_release); then
cat <(cast_build_release); else echo eng.${USER}; fi)"', | 339 '-e', 'CAST_BUILD_RELEASE="<!(if test -f <(cast_build_release); then
cat <(cast_build_release); else echo eng.${USER}; fi)"', |
| 339 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" e
lse 0', | 340 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" o
r <(cast_is_debug_build) == 1 else 0', |
| 340 'common/version.h.in', | 341 'common/version.h.in', |
| 341 '<@(_outputs)', | 342 '<@(_outputs)', |
| 342 ], | 343 ], |
| 343 'includes': [ | 344 'includes': [ |
| 344 '../build/util/version.gypi', | 345 '../build/util/version.gypi', |
| 345 ], | 346 ], |
| 346 }, | 347 }, |
| 347 ], | 348 ], |
| 348 }, | 349 }, |
| 349 ], # end of targets | 350 ], # end of targets |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 ], | 587 ], |
| 587 'sources': [ | 588 'sources': [ |
| 588 'graphics/cast_egl_platform_default.cc', | 589 'graphics/cast_egl_platform_default.cc', |
| 589 'graphics/graphics_properties_default.cc' | 590 'graphics/graphics_properties_default.cc' |
| 590 ], | 591 ], |
| 591 } | 592 } |
| 592 ] | 593 ] |
| 593 }], | 594 }], |
| 594 ], # end of conditions | 595 ], # end of conditions |
| 595 } | 596 } |
| OLD | NEW |