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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Assemblies Created 7 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 | Annotate | Revision Log
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 ], 455 ],
456 }], 456 }],
457 ], 457 ],
458 'dependencies': [ 458 'dependencies': [
459 '../sandbox/sandbox.gyp:sandbox', 459 '../sandbox/sandbox.gyp:sandbox',
460 ], 460 ],
461 }], 461 }],
462 ['OS=="win"', { 462 ['OS=="win"', {
463 'dependencies': [ 463 'dependencies': [
464 'chrome_dll', 464 'chrome_dll',
465 'chrome_elf',
465 'chrome_nacl_win64', 466 'chrome_nacl_win64',
466 'chrome_process_finder', 467 'chrome_process_finder',
467 'chrome_version_resources', 468 'chrome_version_resources',
468 'installer_util', 469 'installer_util',
469 'image_pre_reader', 470 'image_pre_reader',
470 '../base/base.gyp:base', 471 '../base/base.gyp:base',
471 '../breakpad/breakpad.gyp:breakpad_handler', 472 '../breakpad/breakpad.gyp:breakpad_handler',
472 '../breakpad/breakpad.gyp:breakpad_sender', 473 '../breakpad/breakpad.gyp:breakpad_sender',
473 '../components/components.gyp:breakpad_component', 474 '../components/components.gyp:breakpad_component',
474 '../sandbox/sandbox.gyp:sandbox', 475 '../sandbox/sandbox.gyp:sandbox',
(...skipping 16 matching lines...) Expand all
491 'uxtheme.dll', 492 'uxtheme.dll',
492 'ole32.dll', 493 'ole32.dll',
493 'oleaut32.dll', 494 'oleaut32.dll',
494 ], 495 ],
495 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 496 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
496 'SubSystem': '2', 497 'SubSystem': '2',
497 }, 498 },
498 'VCManifestTool': { 499 'VCManifestTool': {
499 'AdditionalManifestFiles': [ 500 'AdditionalManifestFiles': [
500 '$(ProjectDir)\\app\\chrome.exe.manifest', 501 '$(ProjectDir)\\app\\chrome.exe.manifest',
502 # TODO(caitkp): How do I refer to files in out\Release\gen here?
robertshield 2013/11/05 02:23:55 Is this TODO now solved?
Cait (Slow) 2013/11/05 05:39:06 Done.
503 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest ',
501 ], 504 ],
502 }, 505 },
503 }, 506 },
504 'actions': [ 507 'actions': [
505 { 508 {
506 'action_name': 'first_run', 509 'action_name': 'first_run',
507 'inputs': [ 510 'inputs': [
508 'app/FirstRun', 511 'app/FirstRun',
509 ], 512 ],
510 'outputs': [ 513 'outputs': [
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 'dependencies': [ 635 'dependencies': [
633 'chrome_nacl_win64', 636 'chrome_nacl_win64',
634 ], 637 ],
635 }], 638 }],
636 ], 639 ],
637 }, 640 },
638 ], 641 ],
639 }], 642 }],
640 ], 643 ],
641 } 644 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698