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

Side by Side Diff: components/nacl.gyp

Issue 75463005: Move more files from chrome/browser/nacl_host/ to components/nacl/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../native_client/build/untrusted.gypi', 10 '../native_client/build/untrusted.gypi',
(...skipping 22 matching lines...) Expand all
33 'nacl/loader/nacl_main.cc', 33 'nacl/loader/nacl_main.cc',
34 'nacl/loader/nacl_main_platform_delegate.h', 34 'nacl/loader/nacl_main_platform_delegate.h',
35 'nacl/loader/nacl_main_platform_delegate_linux.cc', 35 'nacl/loader/nacl_main_platform_delegate_linux.cc',
36 'nacl/loader/nacl_main_platform_delegate_mac.mm', 36 'nacl/loader/nacl_main_platform_delegate_mac.mm',
37 'nacl/loader/nacl_main_platform_delegate_win.cc', 37 'nacl/loader/nacl_main_platform_delegate_win.cc',
38 'nacl/loader/nacl_listener.cc', 38 'nacl/loader/nacl_listener.cc',
39 'nacl/loader/nacl_listener.h', 39 'nacl/loader/nacl_listener.h',
40 'nacl/loader/nacl_validation_db.h', 40 'nacl/loader/nacl_validation_db.h',
41 'nacl/loader/nacl_validation_query.cc', 41 'nacl/loader/nacl_validation_query.cc',
42 'nacl/loader/nacl_validation_query.h', 42 'nacl/loader/nacl_validation_query.h',
43 'nacl/browser/test_nacl_browser_delegate.cc',
44 ], 43 ],
45 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines 44 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines
46 'conditions': [ 45 'conditions': [
47 ['OS=="win"', { 46 ['OS=="win"', {
48 'defines': [ 47 'defines': [
49 '__STDC_LIMIT_MACROS=1', 48 '__STDC_LIMIT_MACROS=1',
50 ], 49 ],
51 'include_dirs': [ 50 'include_dirs': [
52 '<(DEPTH)/third_party/wtl/include', 51 '<(DEPTH)/third_party/wtl/include',
53 ], 52 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'direct_dependent_settings': { 95 'direct_dependent_settings': {
97 'defines': [ 96 'defines': [
98 '<@(nacl_defines)', 97 '<@(nacl_defines)',
99 ], 98 ],
100 }, 99 },
101 }, 100 },
102 { 101 {
103 'target_name': 'nacl_browser', 102 'target_name': 'nacl_browser',
104 'type': 'static_library', 103 'type': 'static_library',
105 'sources': [ 104 'sources': [
105 'nacl/browser/nacl_broker_host_win.cc',
106 'nacl/browser/nacl_broker_host_win.h',
107 'nacl/browser/nacl_broker_service_win.cc',
108 'nacl/browser/nacl_broker_service_win.h',
106 'nacl/browser/nacl_browser.cc', 109 'nacl/browser/nacl_browser.cc',
107 'nacl/browser/nacl_browser.h', 110 'nacl/browser/nacl_browser.h',
111 'nacl/browser/nacl_file_host.cc',
112 'nacl/browser/nacl_file_host.h',
113 'nacl/browser/nacl_host_message_filter.cc',
114 'nacl/browser/nacl_host_message_filter.h',
115 'nacl/browser/nacl_process_host.cc',
116 'nacl/browser/nacl_process_host.h',
108 'nacl/browser/nacl_validation_cache.cc', 117 'nacl/browser/nacl_validation_cache.cc',
109 'nacl/browser/nacl_validation_cache.h', 118 'nacl/browser/nacl_validation_cache.h',
119 'nacl/browser/pnacl_host.cc',
120 'nacl/browser/pnacl_host.h',
110 'nacl/browser/pnacl_translation_cache.cc', 121 'nacl/browser/pnacl_translation_cache.cc',
111 'nacl/browser/pnacl_translation_cache.h', 122 'nacl/browser/pnacl_translation_cache.h',
123 'nacl/common/nacl_debug_exception_handler_win.cc',
124 'nacl/common/nacl_debug_exception_handler_win.h',
112 ], 125 ],
113 'include_dirs': [ 126 'include_dirs': [
114 '..', 127 '..',
115 ], 128 ],
129 'dependencies': [
130 'nacl_common.gyp:nacl_common',
131 'nacl_common.gyp:nacl_switches',
132 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l',
133 '../content/content.gyp:content_browser',
134 ],
135 'defines': [
136 '<@(nacl_defines)',
137 ],
116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 138 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
117 'msvs_disabled_warnings': [4267, ], 139 'msvs_disabled_warnings': [4267, ],
118 }, 140 },
119 ], 141 ],
120 'conditions': [ 142 'conditions': [
121 ['OS=="linux"', { 143 ['OS=="linux"', {
122 'targets': [ 144 'targets': [
123 { 145 {
124 'target_name': 'nacl_helper', 146 'target_name': 'nacl_helper',
125 'type': 'executable', 147 'type': 'executable',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'target_name': 'nacl_win64', 256 'target_name': 'nacl_win64',
235 'type': 'none', 257 'type': 'none',
236 'sources': [], 258 'sources': [],
237 }, 259 },
238 ], 260 ],
239 }], 261 }],
240 ], 262 ],
241 }], 263 }],
242 ], 264 ],
243 } 265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698