| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'variables': { |
| 6 'chromium_code': 1, |
| 7 }, |
| 8 'targets': [ |
| 9 { |
| 10 'target_name': 'ocmock_support', |
| 11 'type': 'static_library', |
| 12 'dependencies': [ |
| 13 '../../base/base.gyp:base', |
| 14 '../../third_party/ocmock/ocmock.gyp:ocmock', |
| 15 '../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:goo
gle_toolbox_for_mac', |
| 16 ], |
| 17 'sources': [ |
| 18 'ocmock_complex_type_helper.h', |
| 19 'ocmock_complex_type_helper.mm', |
| 20 ], |
| 21 'include_dirs': [ |
| 22 '../..', |
| 23 ], |
| 24 }, |
| 25 { |
| 26 'target_name': 'ocmock_support_unittest', |
| 27 'type': 'executable', |
| 28 'variables': { |
| 29 'ios_product_name': '<(_target_name)', |
| 30 }, |
| 31 'sources': [ |
| 32 'ocmock_complex_type_helper_unittest.mm', |
| 33 ], |
| 34 'dependencies': [ |
| 35 'ocmock_support', |
| 36 '../../base/base.gyp:run_all_unittests', |
| 37 '../../base/base.gyp:test_support_base', |
| 38 '../../testing/gmock.gyp:gmock', |
| 39 '../../testing/gtest.gyp:gtest', |
| 40 '../../testing/iossim/iossim.gyp:iossim#host', |
| 41 '../../third_party/ocmock/ocmock.gyp:ocmock', |
| 42 ], |
| 43 'include_dirs': [ |
| 44 '../..', |
| 45 ], |
| 46 'xcode_settings': {'OTHER_LDFLAGS': ['-ObjC']}, |
| 47 }, |
| 48 ], |
| 49 } |
| OLD | NEW |