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

Unified Diff: skia/skia_tests.gyp

Issue 815023003: skia: Add 'skia_unittests' test suite for this directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: skia/skia_tests.gyp
diff --git a/skia/skia_tests.gyp b/skia/skia_tests.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..9192821d0f1046153b654a2407501cb54aa17095
--- /dev/null
+++ b/skia/skia_tests.gyp
@@ -0,0 +1,48 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'skia_unittests',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ '../skia/skia.gyp:skia',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../ui/gfx/gfx.gyp:gfx_geometry',
+ ],
+ 'sources': [
+ 'ext/analysis_canvas_unittest.cc',
+ 'ext/bitmap_platform_device_mac_unittest.cc',
+ 'ext/convolver_unittest.cc',
+ 'ext/image_operations_unittest.cc',
+ 'ext/pixel_ref_utils_unittest.cc',
+ 'ext/platform_canvas_unittest.cc',
+ 'ext/recursive_gaussian_convolution_unittest.cc',
+ 'ext/refptr_unittest.cc',
+ 'ext/skia_utils_ios_unittest.mm',
+ 'ext/skia_utils_mac_unittest.mm',
+ 'ext/vector_canvas_unittest.cc',
+ ],
+ 'conditions': [
+ ['OS != "win"', {
+ 'sources!': [
+ 'ext/vector_canvas_unittest.cc',
+ ],
+ }],
+ ['OS != "win" and OS != "mac"', {
+ 'sources!': [
+ 'ext/platform_canvas_unittest.cc',
+ ],
+ }],
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698