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

Side by Side Diff: chrome/nacl.gypi

Issue 10211007: NaCl: Split the debug exception handler thread into a separate file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move to chrome/common Created 8 years, 8 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
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 'include': [ 6 'include': [
7 '../native_client/build/untrusted.gypi', 7 '../native_client/build/untrusted.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'type': 'static_library', 100 'type': 'static_library',
101 'variables': { 101 'variables': {
102 'nacl_target': 1, 102 'nacl_target': 1,
103 }, 103 },
104 'dependencies': [ 104 'dependencies': [
105 '../native_client/src/trusted/service_runtime/service_runtime.gy p:sel64', 105 '../native_client/src/trusted/service_runtime/service_runtime.gy p:sel64',
106 '../native_client/src/trusted/platform_qualify/platform_qualify. gyp:platform_qual_lib64', 106 '../native_client/src/trusted/platform_qualify/platform_qualify. gyp:platform_qual_lib64',
107 ], 107 ],
108 'sources': [ 108 'sources': [
109 'common/nacl_cmd_line.cc', 109 'common/nacl_cmd_line.cc',
110 'common/nacl_debug_exception_handler_win.cc',
110 'common/nacl_messages.cc', 111 'common/nacl_messages.cc',
111 'common/nacl_types.cc', 112 'common/nacl_types.cc',
112 'nacl/nacl_broker_listener.cc', 113 'nacl/nacl_broker_listener.cc',
113 'nacl/nacl_broker_listener.h', 114 'nacl/nacl_broker_listener.h',
114 ], 115 ],
115 'include_dirs': [ 116 'include_dirs': [
116 '..', 117 '..',
117 ], 118 ],
118 'defines': [ 119 'defines': [
119 '<@(nacl_win64_defines)', 120 '<@(nacl_win64_defines)',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'target_name': 'nacl_win64', 196 'target_name': 'nacl_win64',
196 'type': 'none', 197 'type': 'none',
197 'sources': [], 198 'sources': [],
198 }, 199 },
199 ], 200 ],
200 }], 201 }],
201 ], 202 ],
202 }], 203 }],
203 ], 204 ],
204 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698