Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: content/content_tests.gypi

Issue 7524033: Add a scoper object for URLFetcher::Factory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/url_fetcher.h ('k') | content/test/test_url_fetcher_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « content/common/url_fetcher.h ('k') | content/test/test_url_fetcher_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698