OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 25 matching lines...) Expand all Loading... | |
36 'ax_tree_update.cc', | 36 'ax_tree_update.cc', |
37 'ax_tree_update.h', | 37 'ax_tree_update.h', |
38 ] | 38 ] |
39 }, | 39 }, |
40 { | 40 { |
41 'target_name': 'accessibility_unittests', | 41 'target_name': 'accessibility_unittests', |
42 'type': 'executable', | 42 'type': 'executable', |
43 'dependencies': [ | 43 'dependencies': [ |
44 '../../base/base.gyp:base', | 44 '../../base/base.gyp:base', |
45 '../../base/base.gyp:run_all_unittests', | 45 '../../base/base.gyp:run_all_unittests', |
46 '../../testing/gmock.gyp:gmock', | |
tfarina
2014/01/11 23:58:51
no, no. Do not use Gmock. Ben banned it!
| |
46 '../../testing/gtest.gyp:gtest', | 47 '../../testing/gtest.gyp:gtest', |
47 '../gfx/gfx.gyp:gfx', | 48 '../gfx/gfx.gyp:gfx', |
48 '../gfx/gfx.gyp:gfx_geometry', | 49 '../gfx/gfx.gyp:gfx_geometry', |
49 'accessibility', | 50 'accessibility', |
50 ], | 51 ], |
51 'sources': [ | 52 'sources': [ |
52 'ax_generated_tree_unittest.cc', | 53 'ax_generated_tree_unittest.cc', |
53 'ax_tree_serializer_unittest.cc', | 54 'ax_tree_serializer_unittest.cc', |
54 'ax_tree_unittest.cc', | 55 'ax_tree_unittest.cc', |
55 ] | 56 ] |
56 }, | 57 }, |
57 ], | 58 ], |
58 } | 59 } |
OLD | NEW |