| 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', |
| 9 'type': 'static_library', |
| 10 'dependencies': [ |
| 11 'content_common', |
| 12 ], |
| 13 'include_dirs': [ |
| 14 '..', |
| 15 ], |
| 16 'sources': [ |
| 17 'test/test_url_fetcher_factory.cc', |
| 18 'test/test_url_fetcher_factory.h', |
| 19 ], |
| 20 }, |
| 21 { |
| 8 'target_name': 'content_unittests', | 22 'target_name': 'content_unittests', |
| 9 'type': 'executable', | 23 'type': 'executable', |
| 10 'dependencies': [ | 24 'dependencies': [ |
| 25 'test_support_content', |
| 11 '../base/base.gyp:test_support_base', | 26 '../base/base.gyp:test_support_base', |
| 12 ], | 27 ], |
| 13 'include_dirs': [ | 28 'include_dirs': [ |
| 14 '..', | 29 '..', |
| 15 ], | 30 ], |
| 16 'sources': [ | 31 'sources': [ |
| 17 'test/run_all_unittests.cc', | 32 'test/run_all_unittests.cc', |
| 18 ], | 33 ], |
| 19 }, | 34 }, |
| 20 ], | 35 ], |
| 21 } | 36 } |
| OLD | NEW |