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

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 142713006: Remove LASTCHANGE dependency (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
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 'remoting_host_installer_win_roots': [ 7 'remoting_host_installer_win_roots': [
8 'host/installer/win/', 8 'host/installer/win/',
9 ], 9 ],
10 'remoting_host_installer_win_files': [ 10 'remoting_host_installer_win_files': [
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 '--encoding', 'utf-16', 352 '--encoding', 'utf-16',
353 '<@(remoting_locales)', 353 '<@(remoting_locales)',
354 ], 354 ],
355 'message': 'Localizing the event log messages' 355 'message': 'Localizing the event log messages'
356 }, 356 },
357 ], 357 ],
358 }, # end of target 'remoting_host_messages' 358 }, # end of target 'remoting_host_messages'
359 359
360 # Generates localized resources for the Windows binaries. 360 # Generates localized resources for the Windows binaries.
361 # The substitution strings are taken from: 361 # The substitution strings are taken from:
362 # - build/util/LASTCHANGE - the last source code revision. 362 # - build/util/LASTCHANGE - the last source code revision. There is
363 # no explicit dependency on this file to avoid rebuilding the host
364 # after unrelated changes.
363 # - chrome/VERSION - the major, build & patch versions. 365 # - chrome/VERSION - the major, build & patch versions.
364 # - remoting/VERSION - the chromoting patch version (and overrides 366 # - remoting/VERSION - the chromoting patch version (and overrides
365 # for chrome/VERSION). 367 # for chrome/VERSION).
366 # - translated webapp strings 368 # - translated webapp strings
367 { 369 {
368 'target_name': 'remoting_windows_resources', 370 'target_name': 'remoting_windows_resources',
369 'type': 'none', 371 'type': 'none',
370 'dependencies': [ 372 'dependencies': [
371 'remoting_resources', 373 'remoting_resources',
372 ], 374 ],
373 'hard_dependency': 1, 375 'hard_dependency': 1,
374 'direct_dependent_settings': { 376 'direct_dependent_settings': {
375 'include_dirs': [ 377 'include_dirs': [
376 '<(SHARED_INTERMEDIATE_DIR)', 378 '<(SHARED_INTERMEDIATE_DIR)',
377 ], 379 ],
378 }, 380 },
379 'sources': [ 381 'sources': [
380 'host/win/core.rc.jinja2', 382 'host/win/core.rc.jinja2',
381 'host/win/version.rc.jinja2', 383 'host/win/version.rc.jinja2',
382 ], 384 ],
383 'rules': [ 385 'rules': [
384 { 386 {
385 'rule_name': 'version', 387 'rule_name': 'version',
386 'extension': 'jinja2', 388 'extension': 'jinja2',
387 'variables': { 389 'variables': {
388 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', 390 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE',
389 }, 391 },
390 'inputs': [ 392 'inputs': [
391 '<(chrome_version_path)', 393 '<(chrome_version_path)',
392 '<(lastchange_path)',
393 '<(remoting_version_path)', 394 '<(remoting_version_path)',
394 '<(RULE_INPUT_PATH)', 395 '<(RULE_INPUT_PATH)',
395 ], 396 ],
396 'outputs': [ 397 'outputs': [
397 '<(SHARED_INTERMEDIATE_DIR)/remoting/<(RULE_INPUT_ROOT)', 398 '<(SHARED_INTERMEDIATE_DIR)/remoting/<(RULE_INPUT_ROOT)',
398 ], 399 ],
399 'action': [ 400 'action': [
400 'python', '<(remoting_localize_path)', 401 'python', '<(remoting_localize_path)',
401 '--variables', '<(chrome_version_path)', 402 '--variables', '<(chrome_version_path)',
402 # |remoting_version_path| must be after |chrome_version_path| 403 # |remoting_version_path| must be after |chrome_version_path|
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 '--defs', '<@(_defs)', 540 '--defs', '<@(_defs)',
540 ], 541 ],
541 }, 542 },
542 ], # actions 543 ], # actions
543 }, # end of target 'remoting_me2me_host_archive' 544 }, # end of target 'remoting_me2me_host_archive'
544 ], # end of 'targets' 545 ], # end of 'targets'
545 }], # '<(wix_path) != ""' 546 }], # '<(wix_path) != ""'
546 547
547 ], # end of 'conditions' 548 ], # end of 'conditions'
548 } 549 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698