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

Unified Diff: components/components_tests.gypi

Issue 11830043: Move content/components/navigation_interception to src/components (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix win build Created 7 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 side-by-side diff with in-line comments
Download patch
Index: components/components_tests.gypi
diff --git a/components/components_tests.gypi b/components/components_tests.gypi
index 537a8c0b0d77ef1783028d15b7d58d5dea936114..e272a5058408a26df842e11fb3a166e044d099ac 100644
--- a/components/components_tests.gypi
+++ b/components/components_tests.gypi
@@ -3,17 +3,31 @@
# found in the LICENSE file.
{
- 'targets': [
- {
- 'target_name': 'components_unittests',
- 'type': '<(gtest_target_type)',
- 'sources': [
- 'test/run_all_unittests.cc',
- ],
- 'dependencies': [
- '../base/base.gyp:test_support_base',
- '../testing/gtest.gyp:gtest',
+ 'conditions': [
+ ['OS != "ios"', {
+ 'targets': [
+ {
+ 'target_name': 'components_unittests',
+ 'type': '<(gtest_target_type)',
+ 'sources': [
+ 'navigation_interception/intercept_navigation_resource_throttle_unittest.cc',
+ 'test/run_all_unittests.cc',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:test_support_base',
+ '../content/content.gyp:test_support_content',
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+
+ # Dependencies of intercept_navigation_resource_throttle_unittest.cc
+ '../skia/skia.gyp:skia',
+ 'navigation_interception',
+ ],
+ }
],
- }
- ]
+ }],
+ ],
}

Powered by Google App Engine
This is Rietveld 408576698