OLD | NEW |
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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
10 }, | 10 }, |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 { # component != static_library | 250 { # component != static_library |
251 'targets': [ | 251 'targets': [ |
252 { | 252 { |
253 'target_name': 'content', | 253 'target_name': 'content', |
254 'type': 'shared_library', | 254 'type': 'shared_library', |
255 'variables': { 'enable_wexit_time_destructors': 1, }, | 255 'variables': { 'enable_wexit_time_destructors': 1, }, |
256 'dependencies': [ | 256 'dependencies': [ |
257 'content_resources.gyp:content_resources', | 257 'content_resources.gyp:content_resources', |
258 ], | 258 ], |
259 'conditions': [ | 259 'conditions': [ |
260 ['OS=="mac"', { | |
261 'dependencies': [ | |
262 '<(DEPTH)/third_party/mach_override/mach_override.gyp:mach_overr
ide', | |
263 ], | |
264 }], | |
265 ['chromium_enable_vtune_jit_for_v8==1', { | 260 ['chromium_enable_vtune_jit_for_v8==1', { |
266 'dependencies': [ | 261 'dependencies': [ |
267 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', | 262 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', |
268 ], | 263 ], |
269 }], | 264 }], |
270 ], | 265 ], |
271 'includes': [ | 266 'includes': [ |
272 'content_app.gypi', | 267 'content_app.gypi', |
273 'content_browser.gypi', | 268 'content_browser.gypi', |
274 'content_child.gypi', | 269 'content_child.gypi', |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 'dependencies': [ | 496 'dependencies': [ |
502 'java_set_jni_headers', | 497 'java_set_jni_headers', |
503 'motionevent_jni_headers' | 498 'motionevent_jni_headers' |
504 ], | 499 ], |
505 'includes': [ 'content_jni.gypi' ], | 500 'includes': [ 'content_jni.gypi' ], |
506 }, | 501 }, |
507 ], | 502 ], |
508 }], # OS == "android" | 503 }], # OS == "android" |
509 ], | 504 ], |
510 } | 505 } |
OLD | NEW |