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 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
9 'conditions': [ | 9 'conditions': [ |
10 ['inside_chromium_build==0', { | 10 ['inside_chromium_build==0', { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'targets': [ | 57 'targets': [ |
58 { | 58 { |
59 'target_name': 'content', | 59 'target_name': 'content', |
60 'type': 'none', | 60 'type': 'none', |
61 'dependencies': [ | 61 'dependencies': [ |
62 'content_app', | 62 'content_app', |
63 'content_browser', | 63 'content_browser', |
64 'content_common', | 64 'content_common', |
65 ], | 65 ], |
66 'conditions': [ | 66 'conditions': [ |
67 ['OS != "ios"', { | 67 ['OS != "ios" and chrome_split_dll != 1', { |
68 'dependencies': [ | 68 'dependencies': [ |
69 'content_gpu', | 69 'content_gpu', |
70 'content_plugin', | 70 'content_plugin', |
71 'content_ppapi_plugin', | 71 'content_ppapi_plugin', |
72 'content_renderer', | 72 'content_renderer', |
73 'content_utility', | 73 'content_utility', |
74 'content_worker', | 74 'content_worker', |
75 ], | 75 ], |
76 }], | 76 }], |
77 ], | 77 ], |
(...skipping 14 matching lines...) Expand all Loading... |
92 'type': 'static_library', | 92 'type': 'static_library', |
93 'variables': { 'enable_wexit_time_destructors': 1, }, | 93 'variables': { 'enable_wexit_time_destructors': 1, }, |
94 'includes': [ | 94 'includes': [ |
95 'content_browser.gypi', | 95 'content_browser.gypi', |
96 ], | 96 ], |
97 'dependencies': [ | 97 'dependencies': [ |
98 'content_common', | 98 'content_common', |
99 'content_resources.gyp:content_resources', | 99 'content_resources.gyp:content_resources', |
100 ], | 100 ], |
101 'conditions': [ | 101 'conditions': [ |
102 ['OS != "ios"', { | 102 ['OS != "ios" and chrome_split_dll != 1', { |
103 'dependencies': [ | 103 'dependencies': [ |
104 'content_gpu', | 104 'content_gpu', |
105 'content_renderer', | 105 'content_renderer', |
106 ], | 106 ], |
107 }], | 107 }], |
| 108 ['chrome_split_dll', { |
| 109 'dependencies': [ |
| 110 'content_gpu', |
| 111 ], |
| 112 }], |
108 ], | 113 ], |
109 }, | 114 }, |
110 { | 115 { |
111 'target_name': 'content_common', | 116 'target_name': 'content_common', |
112 'type': 'static_library', | 117 'type': 'static_library', |
113 'variables': { 'enable_wexit_time_destructors': 1, }, | 118 'variables': { 'enable_wexit_time_destructors': 1, }, |
114 'includes': [ | 119 'includes': [ |
115 'content_common.gypi', | 120 'content_common.gypi', |
116 ], | 121 ], |
117 'conditions': [ | 122 'conditions': [ |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 'include_dirs': [ | 396 'include_dirs': [ |
392 '<(SHARED_INTERMEDIATE_DIR)/content', | 397 '<(SHARED_INTERMEDIATE_DIR)/content', |
393 ], | 398 ], |
394 }, | 399 }, |
395 'includes': [ 'content_jni.gypi' ], | 400 'includes': [ 'content_jni.gypi' ], |
396 }, | 401 }, |
397 ], | 402 ], |
398 }], # OS == "android" | 403 }], # OS == "android" |
399 ], | 404 ], |
400 } | 405 } |
OLD | NEW |