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

Unified Diff: athena/athena.gyp

Issue 301593004: Athena unittests framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | athena/main/DEPS » ('j') | athena/test/athena_unittests.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/athena.gyp
diff --git a/athena/athena.gyp b/athena/athena.gyp
index 33352445cbd2b34b522d06d855c56b6a06b86a17..fef87f59906caa79d59cc9a9d877148e0e9524ea 100644
--- a/athena/athena.gyp
+++ b/athena/athena.gyp
@@ -34,6 +34,45 @@
'wm/window_manager_impl.cc',
],
},
+ {
+ 'target_name': 'athena_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:test_support_base',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ '../ui/accessibility/accessibility.gyp:ax_gen',
+ '../ui/aura/aura.gyp:aura_test_support',
+ '../ui/base/ui_base.gyp:ui_base_test_support',
+ '../ui/compositor/compositor.gyp:compositor_test_support',
+ '../ui/views/views.gyp:views',
+ '../ui/wm/wm.gyp:wm',
+ 'athena_lib',
+ ],
+ 'sources': [
+ 'main/athena_launcher.cc',
+ 'main/athena_launcher.h',
+ 'main/placeholder.cc',
+ 'main/placeholder.h',
+ 'test/athena_test_base.cc',
+ 'test/athena_test_base.h',
+ 'test/athena_test_helper.cc',
+ 'test/athena_test_helper.h',
+ ],
+ },
+ {
+ 'target_name': 'athena_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../testing/gtest.gyp:gtest',
+ 'athena_lib',
+ 'athena_test_support',
+ ],
+ 'sources': [
+ 'test/athena_unittests.cc',
+ 'wm/window_manager_unittest.cc',
+ ],
+ }
],
}
« no previous file with comments | « no previous file | athena/main/DEPS » ('j') | athena/test/athena_unittests.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698