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

Side by Side Diff: sandbox/sandbox.gyp

Issue 113190: Add support for alternate window station. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS=="win"', { 10 [ 'OS=="win"', {
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'src/shared_handles.cc', 127 'src/shared_handles.cc',
128 'src/shared_handles.h', 128 'src/shared_handles.h',
129 'src/target_process.cc', 129 'src/target_process.cc',
130 'src/target_process.h', 130 'src/target_process.h',
131 'src/target_services.cc', 131 'src/target_services.cc',
132 'src/target_services.h', 132 'src/target_services.h',
133 'src/win2k_threadpool.cc', 133 'src/win2k_threadpool.cc',
134 'src/win2k_threadpool.h', 134 'src/win2k_threadpool.h',
135 'src/win_utils.cc', 135 'src/win_utils.cc',
136 'src/win_utils.h', 136 'src/win_utils.h',
137 'src/window.h',
138 'src/window.cc',
137 139
138 # Precompiled headers. 140 # Precompiled headers.
139 'src/stdafx.cc', 141 'src/stdafx.cc',
140 'src/stdafx.h', 142 'src/stdafx.h',
141 ], 143 ],
142 'include_dirs': [ 144 'include_dirs': [
143 '..', 145 '..',
144 ], 146 ],
145 'copies': [ 147 'copies': [
146 { 148 {
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'Debug': { 319 'Debug': {
318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', 320 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h',
319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', 321 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc',
320 }, 322 },
321 }, 323 },
322 }, 324 },
323 ], 325 ],
324 }], 326 }],
325 ], 327 ],
326 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698