Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['OS != "ios"', { | 7 ['OS != "ios"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'components_unittests', | 10 'target_name': 'components_unittests', |
| 11 'type': '<(gtest_target_type)', | 11 'type': '<(gtest_target_type)', |
| 12 'sources': [ | 12 'sources': [ |
| 13 'auto_login_parser/auto_login_parser_unittest.cc', | |
| 13 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', | 14 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', |
| 14 'test/run_all_unittests.cc', | 15 'test/run_all_unittests.cc', |
| 15 ], | 16 ], |
| 16 'include_dirs': [ | 17 'include_dirs': [ |
| 17 '..', | 18 '..', |
| 18 ], | 19 ], |
| 19 'dependencies': [ | 20 'dependencies': [ |
| 20 '../base/base.gyp:test_support_base', | 21 '../base/base.gyp:test_support_base', |
| 21 '../testing/gmock.gyp:gmock', | 22 '../testing/gmock.gyp:gmock', |
| 22 '../testing/gtest.gyp:gtest', | 23 '../testing/gtest.gyp:gtest', |
| 23 | 24 |
| 24 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 25 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 25 '../content/content.gyp:test_support_content', | 26 '../content/content.gyp:test_support_content', |
| 26 '../skia/skia.gyp:skia', | 27 '../skia/skia.gyp:skia', |
| 27 'navigation_interception', | 28 'navigation_interception', |
| 29 | |
| 30 # Dependencies of auto_login_parser | |
| 31 'components.gyp:auto_login_parser', | |
| 28 ], | 32 ], |
| 29 } | 33 'conditions': [ |
| 34 ['OS != "ios"', { | |
|
kaiwang
2013/01/24 19:49:30
The whole target will not build when OS is ios (li
| |
| 35 'sources': [ | |
| 36 'visitedlink/test/visitedlink_unittest.cc', | |
| 37 ], | |
| 38 'dependencies': [ | |
| 39 # Dependencies of visitedlink | |
| 40 'components.gyp:visitedlink_browser', | |
| 41 'components.gyp:visitedlink_renderer', | |
| 42 ], | |
| 43 }], | |
| 44 ], | |
| 45 }, | |
| 30 ], | 46 ], |
| 31 }], | 47 }], |
| 32 ], | 48 ], |
| 33 } | 49 } |
| OLD | NEW |