blob: 852754ce3aa99e51809aee3a9d61883ba518128a [file] [log] [blame]
Andrew Top2a796462018-06-29 09:04:04 -07001# Copyright 2018 The Cobalt Authors. All Rights Reserved.
Andrew Topb626c972018-04-19 09:11:54 -07002#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15{
16 'targets': [
17 {
18 'target_name': 'eztime_test',
19 'type': '<(gtest_target_type)',
20 'sources': [
21 '<(DEPTH)/starboard/common/test_main.cc',
22 'test_constants.h',
23 'eztime_test.cc',
24 ],
25 'dependencies': [
26 '<(DEPTH)/starboard/client_porting/eztime/eztime.gyp:eztime',
27 '<(DEPTH)/starboard/starboard.gyp:starboard',
28 '<(DEPTH)/testing/gmock.gyp:gmock',
29 '<(DEPTH)/testing/gtest.gyp:gtest',
30 ],
31 },
32 {
33 'target_name': 'eztime_test_deploy',
34 'type': 'none',
35 'dependencies': [
36 'eztime_test',
37 ],
38 'variables': {
39 'executable_name': 'eztime_test',
40 },
41 'includes': [ '<(DEPTH)/starboard/build/deploy.gypi' ],
42 },
43 ],
44}