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

Unified Diff: app/app.gyp

Issue 113540: Move app-related unit tests to gyp in app.gyp (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | app/l10n_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/app.gyp
===================================================================
--- app/app.gyp (revision 16294)
+++ app/app.gyp (working copy)
@@ -159,5 +159,53 @@
}],
],
},
+ {
+ 'target_name': 'app_unittests',
+ 'type': 'executable',
+ 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530',
+ 'dependencies': [
+ '../app/app.gyp:app_base',
+ '../net/net.gyp:net_test_support',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ '../third_party/icu38/icu38.gyp:icui18n',
+ '../third_party/icu38/icu38.gyp:icuuc',
+ '../third_party/libxml/libxml.gyp:libxml',
+ ],
+ 'sources': [
+ 'animation_unittest.cc',
+ 'gfx/font_unittest.cc',
+ 'gfx/icon_util_unittest.cc',
+ 'gfx/text_elider_unittest.cc',
+ 'l10n_util_unittest.cc',
+ 'os_exchange_data_win_unittest.cc',
+ 'run_all_unittests.cc',
+ 'test_suite.h',
+ 'tree_node_iterator_unittest.cc',
+ 'win_util_unittest.cc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ # TODO: Move these dependencies to platform-neutral once these
+ # projects are generated by GYP.
+ 'dependencies': [
+ '../build/linux/system.gyp:gtk',
+ '../chrome/chrome.gyp:chrome_resources',
+ '../chrome/chrome.gyp:chrome_strings',
+ '../chrome/chrome.gyp:test_support_unit',
+ ],
+ }],
+ ['OS!="win"', {
+ 'sources!': [
+ 'gfx/icon_util_unittest.cc',
+ 'os_exchange_data_win_unittest.cc',
+ 'win_util_unittest.cc',
+ ],
+ }],
+ ],
+ },
],
}
« no previous file with comments | « no previous file | app/l10n_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698