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

Side by Side Diff: extensions/extensions.gyp

Issue 178253007: Parse manifest file with app.service_worker.script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved test utils out of base 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
« no previous file with comments | « extensions/common/test_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 # Disable c4267 warnings until we fix size_t to int truncations. 256 # Disable c4267 warnings until we fix size_t to int truncations.
257 'msvs_disabled_warnings': [ 4267, ], 257 'msvs_disabled_warnings': [ 4267, ],
258 }, 258 },
259 { 259 {
260 'target_name': 'extensions_test_support', 260 'target_name': 'extensions_test_support',
261 'type': 'static_library', 261 'type': 'static_library',
262 'dependencies': [ 262 'dependencies': [
263 'extensions_browser', 263 'extensions_browser',
264 'extensions_common', 264 'extensions_common',
265 '../base/base.gyp:base', 265 '../base/base.gyp:base',
266 '../testing/gtest.gyp:gtest',
266 ], 267 ],
267 'include_dirs': [ 268 'include_dirs': [
268 '..', 269 '..',
269 ], 270 ],
270 'sources': [ 271 'sources': [
271 'browser/test_management_policy.cc', 272 'browser/test_management_policy.cc',
272 'browser/test_management_policy.h', 273 'browser/test_management_policy.h',
273 'common/extension_builder.cc', 274 'common/extension_builder.cc',
274 'common/extension_builder.h', 275 'common/extension_builder.h',
275 'common/test_util.cc', 276 'common/test_util.cc',
276 'common/test_util.h', 277 'common/test_util.h',
277 'common/value_builder.cc', 278 'common/value_builder.cc',
278 'common/value_builder.h', 279 'common/value_builder.h',
279 ], 280 ],
280 # Disable c4267 warnings until we fix size_t to int truncations. 281 # Disable c4267 warnings until we fix size_t to int truncations.
281 'msvs_disabled_warnings': [ 4267, ], 282 'msvs_disabled_warnings': [ 4267, ],
282 }, 283 },
283 ] 284 ]
284 } 285 }
OLDNEW
« no previous file with comments | « extensions/common/test_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698