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 'chromium_code': 1, | 9 'chromium_code': 1, |
10 'chromecast_branding%': 'Chromium', | 10 'chromecast_branding%': 'Chromium', |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 'common/version.h.in', | 234 'common/version.h.in', |
235 ], | 235 ], |
236 'outputs': [ | 236 'outputs': [ |
237 '<(SHARED_INTERMEDIATE_DIR)/chromecast/common/version.h', | 237 '<(SHARED_INTERMEDIATE_DIR)/chromecast/common/version.h', |
238 ], | 238 ], |
239 'action': [ | 239 'action': [ |
240 'python', | 240 'python', |
241 '<(version_py_path)', | 241 '<(version_py_path)', |
242 '-e', 'VERSION_FULL="<(version_full)"', | 242 '-e', 'VERSION_FULL="<(version_full)"', |
243 # Revision is taken from buildbot if available; otherwise, a dev str
ing is used. | 243 # Revision is taken from buildbot if available; otherwise, a dev str
ing is used. |
244 '-e', 'CAST_BUILD_REVISION="<!(echo ${BUILD_NUMBER:="local.${USER}"}
)"', | 244 '-e', 'CAST_BUILD_REVISION="<!(echo ${CAST_BUILD_REVISION:="eng.${US
ER}.<!(date +%Y%m%d.%H%M%S)"})"', |
245 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" e
lse 0', | 245 '-e', 'CAST_IS_DEBUG_BUILD=1 if "<(CONFIGURATION_NAME)" == "Debug" e
lse 0', |
246 'common/version.h.in', | 246 'common/version.h.in', |
247 '<@(_outputs)', | 247 '<@(_outputs)', |
248 ], | 248 ], |
249 'includes': [ | 249 'includes': [ |
250 '../build/util/version.gypi', | 250 '../build/util/version.gypi', |
251 ], | 251 ], |
252 }, | 252 }, |
253 ], | 253 ], |
254 }, | 254 }, |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 'cast_shell_core', | 440 'cast_shell_core', |
441 ], | 441 ], |
442 'sources': [ | 442 'sources': [ |
443 'app/cast_main.cc', | 443 'app/cast_main.cc', |
444 ], | 444 ], |
445 }, | 445 }, |
446 ], # end of targets | 446 ], # end of targets |
447 }], | 447 }], |
448 ], # end of conditions | 448 ], # end of conditions |
449 } | 449 } |
OLD | NEW |