OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'dependencies': [ | 79 'dependencies': [ |
80 '../../base/base.gyp:base', | 80 '../../base/base.gyp:base', |
81 '../../base/base.gyp:test_support_base', | 81 '../../base/base.gyp:test_support_base', |
82 '../../content/content.gyp:content', | 82 '../../content/content.gyp:content', |
83 '../../skia/skia.gyp:skia', | 83 '../../skia/skia.gyp:skia', |
84 '../../testing/gtest.gyp:gtest', | 84 '../../testing/gtest.gyp:gtest', |
85 '../aura/aura.gyp:aura', | 85 '../aura/aura.gyp:aura', |
86 '../aura/aura.gyp:aura_test_support', | 86 '../aura/aura.gyp:aura_test_support', |
87 '../compositor/compositor.gyp:compositor', | 87 '../compositor/compositor.gyp:compositor', |
88 '../gfx/gfx.gyp:gfx', | 88 '../gfx/gfx.gyp:gfx', |
89 '../ui.gyp:run_ui_unittests', | |
90 '../ui.gyp:ui', | 89 '../ui.gyp:ui', |
| 90 '../ui_unittests.gyp:run_ui_unittests', |
91 'keyboard', | 91 'keyboard', |
92 ], | 92 ], |
93 'sources': [ | 93 'sources': [ |
94 'keyboard_controller_unittest.cc', | 94 'keyboard_controller_unittest.cc', |
95 'keyboard_test_suite.cc', | 95 'keyboard_test_suite.cc', |
96 ], | 96 ], |
97 'conditions': [ | 97 'conditions': [ |
98 ['OS=="linux" and linux_use_tcmalloc==1', { | 98 ['OS=="linux" and linux_use_tcmalloc==1', { |
99 'dependencies': [ | 99 'dependencies': [ |
100 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 100 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
101 ], | 101 ], |
102 'link_settings': { | 102 'link_settings': { |
103 'ldflags': ['-rdynamic'], | 103 'ldflags': ['-rdynamic'], |
104 }, | 104 }, |
105 }], | 105 }], |
106 ], | 106 ], |
107 }, | 107 }, |
108 ], | 108 ], |
109 } | 109 } |
OLD | NEW |