| 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, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 '<(DEPTH)/webkit/fileapi/mock_file_system_options.h', | 148 '<(DEPTH)/webkit/fileapi/mock_file_system_options.h', |
| 149 '<(DEPTH)/webkit/mocks/mock_webhyphenator.cc', | 149 '<(DEPTH)/webkit/mocks/mock_webhyphenator.cc', |
| 150 '<(DEPTH)/webkit/mocks/mock_webhyphenator.h', | 150 '<(DEPTH)/webkit/mocks/mock_webhyphenator.h', |
| 151 '<(DEPTH)/webkit/mocks/test_media_stream_client.cc', | 151 '<(DEPTH)/webkit/mocks/test_media_stream_client.cc', |
| 152 '<(DEPTH)/webkit/mocks/test_media_stream_client.h', | 152 '<(DEPTH)/webkit/mocks/test_media_stream_client.h', |
| 153 '<(DEPTH)/webkit/quota/mock_special_storage_policy.cc', | 153 '<(DEPTH)/webkit/quota/mock_special_storage_policy.cc', |
| 154 '<(DEPTH)/webkit/quota/mock_special_storage_policy.h', | 154 '<(DEPTH)/webkit/quota/mock_special_storage_policy.h', |
| 155 'simple_database_system.cc', | 155 'simple_database_system.cc', |
| 156 'simple_database_system.h', | 156 'simple_database_system.h', |
| 157 ], | 157 ], |
| 158 'conditions': [ | |
| 159 ['inside_chromium_build==0', { | |
| 160 'dependencies': [ | |
| 161 'setup_third_party.gyp:third_party_headers', | |
| 162 ], | |
| 163 }], | |
| 164 ], | |
| 165 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 158 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 166 'msvs_disabled_warnings': [ 4267, ], | 159 'msvs_disabled_warnings': [ 4267, ], |
| 167 }, | 160 }, |
| 168 | 161 |
| 169 { | 162 { |
| 170 'target_name': 'webkit_support_gfx', | 163 'target_name': 'webkit_support_gfx', |
| 171 'type': 'static_library', | 164 'type': 'static_library', |
| 172 'variables': { 'enable_wexit_time_destructors': 1, }, | 165 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 173 'dependencies': [ | 166 'dependencies': [ |
| 174 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 167 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
| 175 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 168 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| 176 ], | 169 ], |
| 177 'sources': [ | 170 'sources': [ |
| 178 'webkit_support_gfx.h', | 171 'webkit_support_gfx.h', |
| 179 'webkit_support_gfx.cc', | 172 'webkit_support_gfx.cc', |
| 180 ], | 173 ], |
| 181 'include_dirs': [ | 174 'include_dirs': [ |
| 182 '<(DEPTH)', | 175 '<(DEPTH)', |
| 183 ], | 176 ], |
| 184 'conditions': [ | 177 'conditions': [ |
| 185 ['OS=="android"', { | 178 ['OS=="android"', { |
| 186 'toolsets': ['target', 'host'], | 179 'toolsets': ['target', 'host'], |
| 187 }], | 180 }], |
| 188 ], | 181 ], |
| 189 }, | 182 }, |
| 190 ], | 183 ], |
| 191 } | 184 } |
| OLD | NEW |