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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 9235053: Add a PartialPreReadImage function to file_util (on Windows). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address feedback from Chris and Siggi Created 8 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
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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. 447 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE.
448 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', 448 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves',
449 }, 449 },
450 }], 450 }],
451 ['OS=="win"', { 451 ['OS=="win"', {
452 'dependencies': [ 452 'dependencies': [
453 'chrome_dll', 453 'chrome_dll',
454 'chrome_version_resources', 454 'chrome_version_resources',
455 'installer_util', 455 'installer_util',
456 'installer_util_strings', 456 'installer_util_strings',
457 'image_pre_reader',
457 '../base/base.gyp:base', 458 '../base/base.gyp:base',
458 '../breakpad/breakpad.gyp:breakpad_handler', 459 '../breakpad/breakpad.gyp:breakpad_handler',
459 '../breakpad/breakpad.gyp:breakpad_sender', 460 '../breakpad/breakpad.gyp:breakpad_sender',
460 '../sandbox/sandbox.gyp:sandbox', 461 '../sandbox/sandbox.gyp:sandbox',
461 'app/policy/cloud_policy_codegen.gyp:policy', 462 'app/policy/cloud_policy_codegen.gyp:policy',
462 ], 463 ],
463 'sources': [ 464 'sources': [
464 'app/chrome_exe.rc', 465 'app/chrome_exe.rc',
465 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', 466 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
466 ], 467 ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 ['OS=="win" and component=="shared_library"', { 504 ['OS=="win" and component=="shared_library"', {
504 'defines': ['COMPILE_CONTENT_STATICALLY'], 505 'defines': ['COMPILE_CONTENT_STATICALLY'],
505 }] 506 }]
506 ], 507 ],
507 }, 508 },
508 ], 509 ],
509 'conditions': [ 510 'conditions': [
510 ['OS=="win"', { 511 ['OS=="win"', {
511 'targets': [ 512 'targets': [
512 { 513 {
514 'target_name': 'image_pre_reader',
515 'type': 'static_library',
516 'sources': [
517 'app/image_pre_reader_win.cc',
518 'app/image_pre_reader_win.h',
519 ],
520 'dependencies': [
521 '../base/base.gyp:base',
522 ],
523 },
524 {
513 'target_name': 'chrome_nacl_win64', 525 'target_name': 'chrome_nacl_win64',
514 'type': 'executable', 526 'type': 'executable',
515 'product_name': 'nacl64', 527 'product_name': 'nacl64',
516 'sources': [ 528 'sources': [
517 'app/breakpad_win.cc', 529 'app/breakpad_win.cc',
518 'app/hard_error_handler_win.cc', 530 'app/hard_error_handler_win.cc',
519 'nacl/nacl_exe_win_64.cc', 531 'nacl/nacl_exe_win_64.cc',
520 '../content/app/startup_helper_win.cc', 532 '../content/app/startup_helper_win.cc',
521 '../content/common/debug_flags.cc', # Needed for sandbox_policy.cc 533 '../content/common/debug_flags.cc', # Needed for sandbox_policy.cc
522 '../content/common/hi_res_timer_manager_win.cc', 534 '../content/common/hi_res_timer_manager_win.cc',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 'configurations': { 569 'configurations': {
558 'Common_Base': { 570 'Common_Base': {
559 'msvs_target_platform': 'x64', 571 'msvs_target_platform': 'x64',
560 }, 572 },
561 }, 573 },
562 }, 574 },
563 ], 575 ],
564 }], 576 }],
565 ], 577 ],
566 } 578 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698