| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'browser/renderer_host/media/mock_media_observer.h', | 31 'browser/renderer_host/media/mock_media_observer.h', |
| 32 'common/test_url_constants.cc', | 32 'common/test_url_constants.cc', |
| 33 'common/test_url_constants.h', | 33 'common/test_url_constants.h', |
| 34 'renderer/mock_content_renderer_client.cc', | 34 'renderer/mock_content_renderer_client.cc', |
| 35 'test/content_test_suite.cc', | 35 'test/content_test_suite.cc', |
| 36 'test/content_test_suite.h', | 36 'test/content_test_suite.h', |
| 37 'test/test_browser_context.cc', | 37 'test/test_browser_context.cc', |
| 38 'test/test_browser_context.h', | 38 'test/test_browser_context.h', |
| 39 'test/test_content_client.cc', | 39 'test/test_content_client.cc', |
| 40 'test/test_content_client.h', | 40 'test/test_content_client.h', |
| 41 'test/test_tab_contents_view.cc', |
| 42 'test/test_tab_contents_view.h', |
| 41 'test/test_url_fetcher_factory.cc', | 43 'test/test_url_fetcher_factory.cc', |
| 42 'test/test_url_fetcher_factory.h', | 44 'test/test_url_fetcher_factory.h', |
| 43 | 45 |
| 44 # TODO(phajdan.jr): Those files should be moved to webkit | 46 # TODO(phajdan.jr): Those files should be moved to webkit |
| 45 # test support target. | 47 # test support target. |
| 46 '../webkit/appcache/appcache_test_helper.cc', | 48 '../webkit/appcache/appcache_test_helper.cc', |
| 47 '../webkit/appcache/appcache_test_helper.h', | 49 '../webkit/appcache/appcache_test_helper.h', |
| 48 '../webkit/quota/mock_special_storage_policy.cc', | 50 '../webkit/quota/mock_special_storage_policy.cc', |
| 49 '../webkit/quota/mock_special_storage_policy.h', | 51 '../webkit/quota/mock_special_storage_policy.h', |
| 50 ], | 52 ], |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 }], | 133 }], |
| 132 ['chromeos==1', { | 134 ['chromeos==1', { |
| 133 'sources/': [ | 135 'sources/': [ |
| 134 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], | 136 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], |
| 135 ], | 137 ], |
| 136 }], | 138 }], |
| 137 ], | 139 ], |
| 138 }, | 140 }, |
| 139 ], | 141 ], |
| 140 } | 142 } |
| OLD | NEW |