| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'test/test_render_view_host_factory.h', | 132 'test/test_render_view_host_factory.h', |
| 133 'test/test_web_contents.cc', | 133 'test/test_web_contents.cc', |
| 134 'test/test_web_contents.h', | 134 'test/test_web_contents.h', |
| 135 'test/test_web_contents_view.cc', | 135 'test/test_web_contents_view.cc', |
| 136 'test/test_web_contents_view.h', | 136 'test/test_web_contents_view.h', |
| 137 | 137 |
| 138 # TODO(phajdan.jr): Those files should be moved to webkit | 138 # TODO(phajdan.jr): Those files should be moved to webkit |
| 139 # test support target. | 139 # test support target. |
| 140 '../webkit/appcache/appcache_test_helper.cc', | 140 '../webkit/appcache/appcache_test_helper.cc', |
| 141 '../webkit/appcache/appcache_test_helper.h', | 141 '../webkit/appcache/appcache_test_helper.h', |
| 142 '../webkit/quota/mock_special_storage_policy.cc', | |
| 143 '../webkit/quota/mock_special_storage_policy.h', | |
| 144 ], | 142 ], |
| 145 'conditions': [ | 143 'conditions': [ |
| 146 ['OS == "ios"', { | 144 ['OS == "ios"', { |
| 147 'sources/': [ | 145 'sources/': [ |
| 148 # iOS only needs a small portion of content; exclude all the | 146 # iOS only needs a small portion of content; exclude all the |
| 149 # implementation, and re-include what is used. | 147 # implementation, and re-include what is used. |
| 150 ['exclude', '\\.(cc|mm)$'], | 148 ['exclude', '\\.(cc|mm)$'], |
| 151 ['include', '_ios\\.(cc|mm)$'], | 149 ['include', '_ios\\.(cc|mm)$'], |
| 152 ['include', '^public/test/content_test_suite_base\\.cc$'], | 150 ['include', '^public/test/content_test_suite_base\\.cc$'], |
| 153 ['include', '^public/test/mock_notification_observer\\.cc$'], | 151 ['include', '^public/test/mock_notification_observer\\.cc$'], |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 'resource_dir': 'shell/android/shell_apk/res', | 1074 'resource_dir': 'shell/android/shell_apk/res', |
| 1077 'additional_src_dirs': ['public/android/javatests/',], | 1075 'additional_src_dirs': ['public/android/javatests/',], |
| 1078 'is_test_apk': 1, | 1076 'is_test_apk': 1, |
| 1079 }, | 1077 }, |
| 1080 'includes': [ '../build/java_apk.gypi' ], | 1078 'includes': [ '../build/java_apk.gypi' ], |
| 1081 }, | 1079 }, |
| 1082 ], | 1080 ], |
| 1083 }], | 1081 }], |
| 1084 ], | 1082 ], |
| 1085 } | 1083 } |
| OLD | NEW |