| 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 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'test/unittest_test_suite.cc', | 88 'test/unittest_test_suite.cc', |
| 89 'test/unittest_test_suite.h', | 89 'test/unittest_test_suite.h', |
| 90 | 90 |
| 91 # TODO(phajdan.jr): Those files should be moved to webkit | 91 # TODO(phajdan.jr): Those files should be moved to webkit |
| 92 # test support target. | 92 # test support target. |
| 93 '../webkit/appcache/appcache_test_helper.cc', | 93 '../webkit/appcache/appcache_test_helper.cc', |
| 94 '../webkit/appcache/appcache_test_helper.h', | 94 '../webkit/appcache/appcache_test_helper.h', |
| 95 '../webkit/quota/mock_special_storage_policy.cc', | 95 '../webkit/quota/mock_special_storage_policy.cc', |
| 96 '../webkit/quota/mock_special_storage_policy.h', | 96 '../webkit/quota/mock_special_storage_policy.h', |
| 97 ], | 97 ], |
| 98 'conditions': [ |
| 99 ['toolkit_uses_gtk == 1', { |
| 100 'dependencies': [ |
| 101 '../build/linux/system.gyp:gtk', |
| 102 ], |
| 103 }], |
| 104 ], |
| 98 }, | 105 }, |
| 99 { | 106 { |
| 100 'target_name': 'content_unittests', | 107 'target_name': 'content_unittests', |
| 101 'type': 'executable', | 108 'type': 'executable', |
| 102 'defines!': ['CONTENT_IMPLEMENTATION'], | 109 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 103 'dependencies': [ | 110 'dependencies': [ |
| 104 'content_browser', | 111 'content_browser', |
| 105 'content_gpu', | 112 'content_gpu', |
| 106 'content_plugin', | 113 'content_plugin', |
| 107 'content_renderer', | 114 'content_renderer', |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 ], | 353 ], |
| 347 'sources': [ | 354 'sources': [ |
| 348 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 355 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
| 349 ], | 356 ], |
| 350 } | 357 } |
| 351 ], | 358 ], |
| 352 }, | 359 }, |
| 353 ], | 360 ], |
| 354 ], | 361 ], |
| 355 } | 362 } |
| OLD | NEW |