| 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 28 matching lines...) Expand all Loading... |
| 39 # chrome_exe to have to depend on allocator). | 39 # chrome_exe to have to depend on allocator). |
| 40 ['component=="static_library"', { | 40 ['component=="static_library"', { |
| 41 'target_defines': [ | 41 'target_defines': [ |
| 42 'COMPILE_CONTENT_STATICALLY', | 42 'COMPILE_CONTENT_STATICALLY', |
| 43 ], | 43 ], |
| 44 'targets': [ | 44 'targets': [ |
| 45 { | 45 { |
| 46 'target_name': 'content', | 46 'target_name': 'content', |
| 47 'type': 'none', | 47 'type': 'none', |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 'content_app_browser', |
| 49 'content_browser', | 50 'content_browser', |
| 50 'content_child', | 51 'content_child', |
| 51 'content_common', | 52 'content_common', |
| 52 ], | 53 ], |
| 53 'conditions': [ | 54 'conditions': [ |
| 54 ['OS != "ios"', { | 55 ['OS != "ios"', { |
| 55 'dependencies': [ | 56 'dependencies': [ |
| 56 'content_gpu', | 57 'content_gpu', |
| 57 'content_plugin', | 58 'content_plugin', |
| 58 'content_ppapi_plugin', | 59 'content_ppapi_plugin', |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 'include_dirs': [ | 497 'include_dirs': [ |
| 497 '<(SHARED_INTERMEDIATE_DIR)/content', | 498 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 498 ], | 499 ], |
| 499 }, | 500 }, |
| 500 'includes': [ 'content_jni.gypi' ], | 501 'includes': [ 'content_jni.gypi' ], |
| 501 }, | 502 }, |
| 502 ], | 503 ], |
| 503 }], # OS == "android" | 504 }], # OS == "android" |
| 504 ], | 505 ], |
| 505 } | 506 } |
| OLD | NEW |