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

Side by Side Diff: chrome/chrome.gyp

Issue 6493004: Implement basic crash detection and shutdown handling for out of process PPAP... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | chrome/plugin/plugin_channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 ], 773 ],
774 }, 774 },
775 { 775 {
776 'target_name': 'ppapi_plugin', 776 'target_name': 'ppapi_plugin',
777 'type': '<(library)', 777 'type': '<(library)',
778 'dependencies': [ 778 'dependencies': [
779 '../base/base.gyp:base', 779 '../base/base.gyp:base',
780 '../ppapi/ppapi.gyp:ppapi_proxy', 780 '../ppapi/ppapi.gyp:ppapi_proxy',
781 ], 781 ],
782 'sources': [ 782 'sources': [
783 'ppapi_plugin/plugin_process_dispatcher.cc',
784 'ppapi_plugin/plugin_process_dispatcher.h',
783 'ppapi_plugin/ppapi_plugin_main.cc', 785 'ppapi_plugin/ppapi_plugin_main.cc',
784 'ppapi_plugin/ppapi_process.cc', 786 'ppapi_plugin/ppapi_process.cc',
785 'ppapi_plugin/ppapi_process.h', 787 'ppapi_plugin/ppapi_process.h',
786 'ppapi_plugin/ppapi_thread.cc', 788 'ppapi_plugin/ppapi_thread.cc',
787 'ppapi_plugin/ppapi_thread.h', 789 'ppapi_plugin/ppapi_thread.h',
788 ], 790 ],
789 'include_dirs': [ 791 'include_dirs': [
790 '..', 792 '..',
791 ], 793 ],
792 }, 794 },
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 }], # targets 1924 }], # targets
1923 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1925 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1924 ], # 'conditions' 1926 ], # 'conditions'
1925 } 1927 }
1926 1928
1927 # Local Variables: 1929 # Local Variables:
1928 # tab-width:2 1930 # tab-width:2
1929 # indent-tabs-mode:nil 1931 # indent-tabs-mode:nil
1930 # End: 1932 # End:
1931 # vim: set expandtab tabstop=2 shiftwidth=2: 1933 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/plugin/plugin_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698