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

Side by Side Diff: extensions/extensions.gyp

Issue 189683002: Add TestExtensionsBrowserClient, move ProcessManagerTest to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 'type': 'static_library', 268 'type': 'static_library',
269 'dependencies': [ 269 'dependencies': [
270 'extensions_browser', 270 'extensions_browser',
271 'extensions_common', 271 'extensions_common',
272 '../base/base.gyp:base', 272 '../base/base.gyp:base',
273 ], 273 ],
274 'include_dirs': [ 274 'include_dirs': [
275 '..', 275 '..',
276 ], 276 ],
277 'sources': [ 277 'sources': [
278 'browser/test_extensions_browser_client.cc',
279 'browser/test_extensions_browser_client.h',
278 'browser/test_management_policy.cc', 280 'browser/test_management_policy.cc',
279 'browser/test_management_policy.h', 281 'browser/test_management_policy.h',
280 'common/extension_builder.cc', 282 'common/extension_builder.cc',
281 'common/extension_builder.h', 283 'common/extension_builder.h',
282 'common/test_util.cc', 284 'common/test_util.cc',
283 'common/test_util.h', 285 'common/test_util.h',
284 'common/value_builder.cc', 286 'common/value_builder.cc',
285 'common/value_builder.h', 287 'common/value_builder.h',
286 ], 288 ],
287 # Disable c4267 warnings until we fix size_t to int truncations. 289 # Disable c4267 warnings until we fix size_t to int truncations.
288 'msvs_disabled_warnings': [ 4267, ], 290 'msvs_disabled_warnings': [ 4267, ],
289 }, 291 },
290 ] 292 ]
291 } 293 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698