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

Side by Side Diff: Source/web/web.gyp

Issue 23532077: [Experiment] Animated image decoder benchmark tool Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/web/ImageDecodeBench.cpp ('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 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 'python', 318 'python',
319 'scripts/make-file-arrays.py', 319 'scripts/make-file-arrays.py',
320 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestio nPicker.h', 320 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggestio nPicker.h',
321 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggest ionPicker.cpp', 321 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/ColorSuggest ionPicker.cpp',
322 '<@(resources)', 322 '<@(resources)',
323 ], 323 ],
324 }, 324 },
325 ], 325 ],
326 }, 326 },
327 { 327 {
328 'target_name': 'image_decode_bench',
329 'type': 'executable',
330 'dependencies': [
331 '../wtf/wtf.gyp:wtf',
332 '../core/core.gyp:webcore',
333 '../platform/blink_platform.gyp:blink_common',
334 'webkit_test_support',
335 'webkit',
336 ],
337 'sources': [
338 'ImageDecodeBench.cpp',
339 ],
340 },
341 {
328 'target_name': 'webkit_test_support', 342 'target_name': 'webkit_test_support',
329 'conditions': [ 343 'conditions': [
330 ['component=="shared_library"', { 344 ['component=="shared_library"', {
331 'type': 'none', 345 'type': 'none',
332 }, { 346 }, {
333 'type': 'static_library', 347 'type': 'static_library',
334 'dependencies': [ 348 'dependencies': [
335 '../config.gyp:config', 349 '../config.gyp:config',
336 '../core/core.gyp:webcore_test_support', 350 '../core/core.gyp:webcore_test_support',
337 '../modules/modules.gyp:modules_test_support', 351 '../modules/modules.gyp:modules_test_support',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 ['clang==1', { 388 ['clang==1', {
375 'target_defaults': { 389 'target_defaults': {
376 'cflags': ['-Wglobal-constructors'], 390 'cflags': ['-Wglobal-constructors'],
377 'xcode_settings': { 391 'xcode_settings': {
378 'WARNING_CFLAGS': ['-Wglobal-constructors'], 392 'WARNING_CFLAGS': ['-Wglobal-constructors'],
379 }, 393 },
380 }, 394 },
381 }], 395 }],
382 ], # conditions 396 ], # conditions
383 } 397 }
OLDNEW
« no previous file with comments | « Source/web/ImageDecodeBench.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698