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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1298743002: Partially componentize chrome/common/crash_keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on iOS Created 5 years, 4 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': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'chrome_process_finder', 459 'chrome_process_finder',
460 'chrome_version_resources', 460 'chrome_version_resources',
461 'installer_util', 461 'installer_util',
462 'image_pre_reader', 462 'image_pre_reader',
463 '../base/base.gyp:base', 463 '../base/base.gyp:base',
464 '../crypto/crypto.gyp:crypto', 464 '../crypto/crypto.gyp:crypto',
465 '../breakpad/breakpad.gyp:breakpad_handler', 465 '../breakpad/breakpad.gyp:breakpad_handler',
466 '../breakpad/breakpad.gyp:breakpad_sender', 466 '../breakpad/breakpad.gyp:breakpad_sender',
467 '../chrome_elf/chrome_elf.gyp:chrome_elf', 467 '../chrome_elf/chrome_elf.gyp:chrome_elf',
468 '../components/components.gyp:crash_component', 468 '../components/components.gyp:crash_component',
469 '../components/components.gyp:crash_keyes',
Mark Mentovai 2015/08/17 18:55:01 keys, not keyes
sdefresne 2015/08/18 12:47:39 Done.
469 '../sandbox/sandbox.gyp:sandbox', 470 '../sandbox/sandbox.gyp:sandbox',
470 '../ui/gfx/gfx.gyp:gfx', 471 '../ui/gfx/gfx.gyp:gfx',
471 '../win8/metro_driver/metro_driver.gyp:metro_driver', 472 '../win8/metro_driver/metro_driver.gyp:metro_driver',
472 '../win8/delegate_execute/delegate_execute.gyp:*', 473 '../win8/delegate_execute/delegate_execute.gyp:*',
473 ], 474 ],
474 'sources': [ 475 'sources': [
475 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', 476 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
476 'app/chrome_crash_reporter_client.cc', 477 'app/chrome_crash_reporter_client.cc',
477 'app/chrome_crash_reporter_client.h', 478 'app/chrome_crash_reporter_client.h',
478 'app/chrome_exe.rc', 479 'app/chrome_exe.rc',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 'dependencies': [ 595 'dependencies': [
595 'chrome_version_resources', 596 'chrome_version_resources',
596 'installer_util_nacl_win64', 597 'installer_util_nacl_win64',
597 '../base/base.gyp:base_i18n_nacl_win64', 598 '../base/base.gyp:base_i18n_nacl_win64',
598 '../base/base.gyp:base_win64', 599 '../base/base.gyp:base_win64',
599 '../base/base.gyp:base_static_win64', 600 '../base/base.gyp:base_static_win64',
600 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64', 601 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64',
601 '../breakpad/breakpad.gyp:breakpad_handler_win64', 602 '../breakpad/breakpad.gyp:breakpad_handler_win64',
602 '../breakpad/breakpad.gyp:breakpad_sender_win64', 603 '../breakpad/breakpad.gyp:breakpad_sender_win64',
603 '../components/components.gyp:breakpad_win64', 604 '../components/components.gyp:breakpad_win64',
605 '../components/components.gyp:crash_keys',
604 '../chrome/common_constants.gyp:common_constants_win64', 606 '../chrome/common_constants.gyp:common_constants_win64',
605 '../components/nacl.gyp:nacl_win64', 607 '../components/nacl.gyp:nacl_win64',
606 '../crypto/crypto.gyp:crypto_nacl_win64', 608 '../crypto/crypto.gyp:crypto_nacl_win64',
607 '../ipc/ipc.gyp:ipc_win64', 609 '../ipc/ipc.gyp:ipc_win64',
608 '../sandbox/sandbox.gyp:sandbox_win64', 610 '../sandbox/sandbox.gyp:sandbox_win64',
609 ], 611 ],
610 'defines': [ 612 'defines': [
611 '<@(nacl_win64_defines)', 613 '<@(nacl_win64_defines)',
612 'COMPILE_CONTENT_STATICALLY', 614 'COMPILE_CONTENT_STATICALLY',
613 ], 615 ],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 'dependencies': [ 668 'dependencies': [
667 'chrome_nacl_win64', 669 'chrome_nacl_win64',
668 ], 670 ],
669 }], 671 }],
670 ], 672 ],
671 }, 673 },
672 ], 674 ],
673 }], 675 }],
674 ], 676 ],
675 } 677 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698