OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_common', | 8 'target_name': 'content_common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
197 'common/resource_messages.h', | 197 'common/resource_messages.h', |
198 'common/resource_response.cc', | 198 'common/resource_response.cc', |
199 'common/resource_response.h', | 199 'common/resource_response.h', |
200 'common/sandbox_init_wrapper.h', | 200 'common/sandbox_init_wrapper.h', |
201 'common/sandbox_init_wrapper_linux.cc', | 201 'common/sandbox_init_wrapper_linux.cc', |
202 'common/sandbox_init_wrapper_mac.cc', | 202 'common/sandbox_init_wrapper_mac.cc', |
203 'common/sandbox_init_wrapper_win.cc', | 203 'common/sandbox_init_wrapper_win.cc', |
204 'common/sandbox_mac.h', | 204 'common/sandbox_mac.h', |
205 'common/sandbox_mac.mm', | 205 'common/sandbox_mac.mm', |
206 'common/sandbox_methods_linux.h', | 206 'common/sandbox_methods_linux.h', |
207 'common/sandbox_policy.cc', | |
208 'common/sandbox_policy.h', | |
207 'common/section_util_win.cc', | 209 'common/section_util_win.cc', |
208 'common/section_util_win.h', | 210 'common/section_util_win.h', |
209 'common/security_style.h', | 211 'common/security_style.h', |
210 'common/serialized_script_value.cc', | 212 'common/serialized_script_value.cc', |
211 'common/serialized_script_value.h', | 213 'common/serialized_script_value.h', |
212 'common/set_process_title.cc', | 214 'common/set_process_title.cc', |
213 'common/set_process_title.h', | 215 'common/set_process_title.h', |
214 'common/set_process_title_linux.cc', | 216 'common/set_process_title_linux.cc', |
215 'common/set_process_title_linux.h', | 217 'common/set_process_title_linux.h', |
216 'common/socket_stream.h', | 218 'common/socket_stream.h', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
252 'include_dirs': [ | 254 'include_dirs': [ |
253 '<(DEPTH)/third_party/angle/include', | 255 '<(DEPTH)/third_party/angle/include', |
254 '<(DEPTH)/third_party/angle/src', | 256 '<(DEPTH)/third_party/angle/src', |
255 '<(DEPTH)/third_party/wtl/include', | 257 '<(DEPTH)/third_party/wtl/include', |
256 '$(DXSDK_DIR)/include', | 258 '$(DXSDK_DIR)/include', |
257 ], | 259 ], |
258 'dependencies': [ | 260 'dependencies': [ |
259 '../third_party/angle/src/build_angle.gyp:libEGL', | 261 '../third_party/angle/src/build_angle.gyp:libEGL', |
260 '../third_party/angle/src/build_angle.gyp:libGLESv2', | 262 '../third_party/angle/src/build_angle.gyp:libGLESv2', |
261 ], | 263 ], |
264 }, { # OS!="win | |
Avi (use Gerrit)
2011/05/28 04:48:45
quote on the right?
jam
2011/05/28 18:48:30
Done.
| |
265 'sources!': [ | |
266 'common/sandbox_policy.cc', | |
267 'common/sandbox_policy.h', | |
268 ], | |
262 }], | 269 }], |
263 ['OS=="mac"', { | 270 ['OS=="mac"', { |
264 'sources!': [ | 271 'sources!': [ |
265 'common/process_watcher_posix.cc', | 272 'common/process_watcher_posix.cc', |
266 ], | 273 ], |
267 'link_settings': { | 274 'link_settings': { |
268 'mac_bundle_resources': [ | 275 'mac_bundle_resources': [ |
269 'common/common.sb', | 276 'common/common.sb', |
270 ], | 277 ], |
271 }, | 278 }, |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
306 'libraries': [ | 313 'libraries': [ |
307 '-lEGL', | 314 '-lEGL', |
308 '-lGLESv2', | 315 '-lGLESv2', |
309 ], | 316 ], |
310 }, | 317 }, |
311 }], | 318 }], |
312 ], | 319 ], |
313 }, | 320 }, |
314 ], | 321 ], |
315 } | 322 } |
OLD | NEW |