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

Side by Side Diff: chrome/chrome.gyp

Issue 3915002: Out of process Pepper (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/chrome_browser.gypi » ('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',
11 }, 11 },
12 'version_py_path': '<(version_py_path)', 12 'version_py_path': '<(version_py_path)',
13 'version_path': '<(version_path)', 13 'version_path': '<(version_path)',
14 'version_full': 14 'version_full':
15 '<!(python <(version_py_path) -f <(version_path) -t "@MAJOR@.@MINOR@.@BU ILD@.@PATCH@")', 15 '<!(python <(version_py_path) -f <(version_path) -t "@MAJOR@.@MINOR@.@BU ILD@.@PATCH@")',
16 'version_mac_dylib': 16 'version_mac_dylib':
17 '<!(python <(version_py_path) -f <(version_path) -t "@BUILD@.@PATCH_HI@. @PATCH_LO@" -e "PATCH_HI=int(PATCH)/256" -e "PATCH_LO=int(PATCH)%256")', 17 '<!(python <(version_py_path) -f <(version_path) -t "@BUILD@.@PATCH_HI@. @PATCH_LO@" -e "PATCH_HI=int(PATCH)/256" -e "PATCH_LO=int(PATCH)%256")',
18 18
19 # Define the common dependencies that contain all the actual 19 # Define the common dependencies that contain all the actual
20 # Chromium functionality. This list gets pulled in below by 20 # Chromium functionality. This list gets pulled in below by
21 # the link of the actual chrome (or chromium) executable on 21 # the link of the actual chrome (or chromium) executable on
22 # Linux or Mac, and into chrome.dll on Windows. 22 # Linux or Mac, and into chrome.dll on Windows.
23 'chromium_dependencies': [ 23 'chromium_dependencies': [
24 'common', 24 'common',
25 'browser', 25 'browser',
26 'chrome_gpu', 26 'chrome_gpu',
27 'ppapi_plugin',
27 'profile_import', 28 'profile_import',
28 'renderer', 29 'renderer',
29 'syncapi', 30 'syncapi',
30 'utility', 31 'utility',
31 'worker', 32 'worker',
32 'service', 33 'service',
33 '../printing/printing.gyp:printing', 34 '../printing/printing.gyp:printing',
34 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:inspector_resources', 35 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:inspector_resources',
35 ], 36 ],
36 'nacl_win64_dependencies': [ 37 'nacl_win64_dependencies': [
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 ], 809 ],
809 }], 810 }],
810 ['enable_gpu==1', { 811 ['enable_gpu==1', {
811 'dependencies': [ 812 'dependencies': [
812 '../gpu/gpu.gyp:command_buffer_service', 813 '../gpu/gpu.gyp:command_buffer_service',
813 ], 814 ],
814 }], 815 }],
815 ], 816 ],
816 }, 817 },
817 { 818 {
819 'target_name': 'ppapi_plugin',
820 'type': '<(library)',
821 'dependencies': [
822 '../base/base.gyp:base',
823 '../ppapi/ppapi.gyp:ppapi_proxy',
824 ],
825 'sources': [
826 'ppapi_plugin/ppapi_plugin_main.cc',
827 'ppapi_plugin/ppapi_process.cc',
828 'ppapi_plugin/ppapi_process.h',
829 'ppapi_plugin/ppapi_thread.cc',
830 'ppapi_plugin/ppapi_thread.h',
831 ],
832 'include_dirs': [
833 '..',
834 ],
835 },
836 {
818 'target_name': 'worker', 837 'target_name': 'worker',
819 'type': '<(library)', 838 'type': '<(library)',
820 'msvs_guid': 'C78D02D0-A366-4EC6-A248-AA8E64C4BA18', 839 'msvs_guid': 'C78D02D0-A366-4EC6-A248-AA8E64C4BA18',
821 'dependencies': [ 840 'dependencies': [
822 '../base/base.gyp:base', 841 '../base/base.gyp:base',
823 '../skia/skia.gyp:skia', 842 '../skia/skia.gyp:skia',
824 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', 843 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit',
825 ], 844 ],
826 'sources': [ 845 'sources': [
827 'worker/nativewebworker_impl.cc', 846 'worker/nativewebworker_impl.cc',
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
2012 }], # targets 2031 }], # targets
2013 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 2032 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
2014 ], # 'conditions' 2033 ], # 'conditions'
2015 } 2034 }
2016 2035
2017 # Local Variables: 2036 # Local Variables:
2018 # tab-width:2 2037 # tab-width:2
2019 # indent-tabs-mode:nil 2038 # indent-tabs-mode:nil
2020 # End: 2039 # End:
2021 # vim: set expandtab tabstop=2 shiftwidth=2: 2040 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698