| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 { | 45 { |
| 46 'target_name': 'content', | 46 'target_name': 'content', |
| 47 'type': 'none', | 47 'type': 'none', |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 'content_app', | 49 'content_app', |
| 50 'content_browser', | 50 'content_browser', |
| 51 'content_child', | 51 'content_child', |
| 52 'content_common', | 52 'content_common', |
| 53 ], | 53 ], |
| 54 'conditions': [ | 54 'conditions': [ |
| 55 ['OS != "ios" and chrome_split_dll != 1', { | 55 ['OS != "ios"', { |
| 56 'dependencies': [ | 56 'dependencies': [ |
| 57 'content_gpu', | 57 'content_gpu', |
| 58 'content_plugin', | 58 'content_plugin', |
| 59 'content_ppapi_plugin', | 59 'content_ppapi_plugin', |
| 60 'content_renderer', | 60 'content_renderer', |
| 61 'content_utility', | 61 'content_utility', |
| 62 'content_worker', | 62 'content_worker', |
| 63 ], | 63 ], |
| 64 }], | 64 }], |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 { | 67 { |
| 68 'target_name': 'content_app', | 68 'target_name': 'content_app', |
| 69 'type': 'static_library', | 69 'type': 'static_library', |
| 70 'variables': { 'enable_wexit_time_destructors': 1, }, | 70 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 71 'includes': [ | 71 'includes': [ |
| 72 'content_app.gypi', | 72 'content_app.gypi', |
| 73 ], | 73 ], |
| 74 'dependencies': [ | 74 'dependencies': [ |
| 75 'content_common', | 75 'content_common', |
| 76 ], | 76 ], |
| 77 'conditions': [ |
| 78 ['chrome_multiple_dll', { |
| 79 'defines': [ |
| 80 'CHROME_MULTIPLE_DLL_BROWSER', |
| 81 ], |
| 82 }], |
| 83 ], |
| 84 }, |
| 85 { |
| 86 'target_name': 'content_app_child', |
| 87 'type': 'static_library', |
| 88 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 89 'includes': [ |
| 90 'content_app.gypi', |
| 91 ], |
| 92 'dependencies': [ |
| 93 'content_common', |
| 94 ], |
| 95 'conditions': [ |
| 96 ['chrome_multiple_dll', { |
| 97 'defines': [ |
| 98 'CHROME_MULTIPLE_DLL_CHILD', |
| 99 ], |
| 100 }], |
| 101 ], |
| 77 }, | 102 }, |
| 78 { | 103 { |
| 79 'target_name': 'content_browser', | 104 'target_name': 'content_browser', |
| 80 'type': 'static_library', | 105 'type': 'static_library', |
| 81 'variables': { 'enable_wexit_time_destructors': 1, }, | 106 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 82 'includes': [ | 107 'includes': [ |
| 83 'content_browser.gypi', | 108 'content_browser.gypi', |
| 84 ], | 109 ], |
| 85 'dependencies': [ | 110 'dependencies': [ |
| 86 'content_common', | 111 'content_common', |
| 87 'content_resources.gyp:content_resources', | 112 'content_resources.gyp:content_resources', |
| 88 ], | 113 ], |
| 89 'conditions': [ | 114 'conditions': [ |
| 90 ['OS != "ios" and chrome_split_dll != 1', { | 115 ['OS != "ios"', { |
| 91 'dependencies': [ | 116 'dependencies': [ |
| 92 'content_gpu', | 117 'content_gpu', |
| 93 'content_renderer', | |
| 94 'content_utility', | 118 'content_utility', |
| 95 ], | 119 ], |
| 96 }], | 120 }], |
| 97 ['chrome_split_dll', { | |
| 98 'dependencies': [ | |
| 99 'content_gpu', | |
| 100 ], | |
| 101 }], | |
| 102 ['java_bridge==1', { | 121 ['java_bridge==1', { |
| 103 'dependencies': [ | 122 'dependencies': [ |
| 104 'content_child', | 123 'content_child', |
| 105 ] | 124 ] |
| 106 }] | 125 }] |
| 107 ], | 126 ], |
| 108 }, | 127 }, |
| 109 { | 128 { |
| 110 'target_name': 'content_common', | 129 'target_name': 'content_common', |
| 111 'type': 'static_library', | 130 'type': 'static_library', |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 ], | 286 ], |
| 268 }, | 287 }, |
| 269 }, | 288 }, |
| 270 }, | 289 }, |
| 271 { | 290 { |
| 272 'target_name': 'content_app', | 291 'target_name': 'content_app', |
| 273 'type': 'none', | 292 'type': 'none', |
| 274 'dependencies': ['content', 'content_browser'], | 293 'dependencies': ['content', 'content_browser'], |
| 275 }, | 294 }, |
| 276 { | 295 { |
| 296 'target_name': 'content_app_child', |
| 297 'type': 'none', |
| 298 'dependencies': ['content', 'content_child'], |
| 299 }, |
| 300 { |
| 277 'target_name': 'content_browser', | 301 'target_name': 'content_browser', |
| 278 'type': 'none', | 302 'type': 'none', |
| 279 'dependencies': ['content'], | 303 'dependencies': ['content'], |
| 280 }, | 304 }, |
| 281 { | 305 { |
| 282 'target_name': 'content_common', | 306 'target_name': 'content_common', |
| 283 'type': 'none', | 307 'type': 'none', |
| 284 'dependencies': ['content', 'content_resources.gyp:content_resources']
, | 308 'dependencies': ['content', 'content_resources.gyp:content_resources']
, |
| 285 # Disable c4267 warnings until we fix size_t to int truncations. | 309 # Disable c4267 warnings until we fix size_t to int truncations. |
| 286 'msvs_disabled_warnings': [ 4267, ], | 310 'msvs_disabled_warnings': [ 4267, ], |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 'include_dirs': [ | 479 'include_dirs': [ |
| 456 '<(SHARED_INTERMEDIATE_DIR)/content', | 480 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 457 ], | 481 ], |
| 458 }, | 482 }, |
| 459 'includes': [ 'content_jni.gypi' ], | 483 'includes': [ 'content_jni.gypi' ], |
| 460 }, | 484 }, |
| 461 ], | 485 ], |
| 462 }], # OS == "android" | 486 }], # OS == "android" |
| 463 ], | 487 ], |
| 464 } | 488 } |
| OLD | NEW |