| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'layouttest_support_content_sources': [ | 7 'layouttest_support_content_sources': [ |
| 8 'public/test/layouttest_support.h', | 8 'public/test/layouttest_support.h', |
| 9 'public/test/nested_message_pump_android.cc', | 9 'public/test/nested_message_pump_android.cc', |
| 10 'public/test/nested_message_pump_android.h', | 10 'public/test/nested_message_pump_android.h', |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'type': 'static_library', | 167 'type': 'static_library', |
| 168 'conditions': [ | 168 'conditions': [ |
| 169 ['OS=="android"', { | 169 ['OS=="android"', { |
| 170 'dependencies': [ | 170 'dependencies': [ |
| 171 'test_support_content_jni_headers', | 171 'test_support_content_jni_headers', |
| 172 ], | 172 ], |
| 173 }], | 173 }], |
| 174 ['OS!="ios"', { | 174 ['OS!="ios"', { |
| 175 # layouttest_support_content is not supported nor required on iOS. | 175 # layouttest_support_content is not supported nor required on iOS. |
| 176 'dependencies': [ | 176 'dependencies': [ |
| 177 'content.gyp:content_renderer', |
| 177 'test_support_content', | 178 'test_support_content', |
| 178 '../skia/skia.gyp:skia', | 179 '../skia/skia.gyp:skia', |
| 179 '../ui/accessibility/accessibility.gyp:ax_gen', | 180 '../ui/accessibility/accessibility.gyp:ax_gen', |
| 180 '../v8/tools/gyp/v8.gyp:v8', | 181 '../v8/tools/gyp/v8.gyp:v8', |
| 181 ], | 182 ], |
| 182 'include_dirs': [ | 183 'include_dirs': [ |
| 183 '..', | 184 '..', |
| 184 '<(SHARED_INTERMEDIATE_DIR)', | 185 '<(SHARED_INTERMEDIATE_DIR)', |
| 185 ], | 186 ], |
| 186 'sources': [ '<@(layouttest_support_content_sources)' ] | 187 'sources': [ '<@(layouttest_support_content_sources)' ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 205 '../ui/events/events.gyp:events_test_support', | 206 '../ui/events/events.gyp:events_test_support', |
| 206 '../ui/events/events.gyp:gesture_detection', | 207 '../ui/events/events.gyp:gesture_detection', |
| 207 '../ui/gfx/gfx.gyp:gfx_test_support', | 208 '../ui/gfx/gfx.gyp:gfx_test_support', |
| 208 '../ui/resources/ui_resources.gyp:ui_resources', | 209 '../ui/resources/ui_resources.gyp:ui_resources', |
| 209 '../url/url.gyp:url_lib', | 210 '../url/url.gyp:url_lib', |
| 210 'browser/speech/proto/speech_proto.gyp:speech_proto', | 211 'browser/speech/proto/speech_proto.gyp:speech_proto', |
| 211 'content.gyp:content_app_both', | 212 'content.gyp:content_app_both', |
| 212 'content.gyp:content_browser', | 213 'content.gyp:content_browser', |
| 213 'content.gyp:content_common', | 214 'content.gyp:content_common', |
| 214 ], | 215 ], |
| 216 'export_dependent_settings': [ |
| 217 'content.gyp:content_browser', |
| 218 ], |
| 215 'include_dirs': [ | 219 'include_dirs': [ |
| 216 '..', | 220 '..', |
| 217 ], | 221 ], |
| 218 'sources': [ '<@(test_support_content_sources)' ], | 222 'sources': [ '<@(test_support_content_sources)' ], |
| 219 'conditions': [ | 223 'conditions': [ |
| 220 ['enable_plugins==0', { | 224 ['enable_plugins==0', { |
| 221 'sources!': [ | 225 'sources!': [ |
| 222 'test/ppapi_unittest.cc', | 226 'test/ppapi_unittest.cc', |
| 223 ], | 227 ], |
| 224 }], | 228 }], |
| (...skipping 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2014 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 2018 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
| 2015 }, | 2019 }, |
| 2016 ], | 2020 ], |
| 2017 }], | 2021 }], |
| 2018 ], | 2022 ], |
| 2019 }, | 2023 }, |
| 2020 ], | 2024 ], |
| 2021 }], | 2025 }], |
| 2022 ], | 2026 ], |
| 2023 } | 2027 } |
| OLD | NEW |