| 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 24 matching lines...) Expand all Loading... |
| 35 'target_name': 'keyboard_unittests', | 35 'target_name': 'keyboard_unittests', |
| 36 'type': 'executable', | 36 'type': 'executable', |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
| 39 '../../base/base.gyp:test_support_base', | 39 '../../base/base.gyp:test_support_base', |
| 40 '../../skia/skia.gyp:skia', | 40 '../../skia/skia.gyp:skia', |
| 41 '../../testing/gtest.gyp:gtest', | 41 '../../testing/gtest.gyp:gtest', |
| 42 '../aura/aura.gyp:aura', | 42 '../aura/aura.gyp:aura', |
| 43 '../aura/aura.gyp:aura_test_support', | 43 '../aura/aura.gyp:aura_test_support', |
| 44 '../compositor/compositor.gyp:compositor', | 44 '../compositor/compositor.gyp:compositor', |
| 45 '../compositor/compositor.gyp:compositor_test_support', |
| 45 '../ui.gyp:run_ui_unittests', | 46 '../ui.gyp:run_ui_unittests', |
| 46 '../ui.gyp:ui', | 47 '../ui.gyp:ui', |
| 47 'keyboard', | 48 'keyboard', |
| 48 ], | 49 ], |
| 49 'sources': [ | 50 'sources': [ |
| 50 'keyboard_controller_unittest.cc', | 51 'keyboard_controller_unittest.cc', |
| 52 'keyboard_test_suite.cc', |
| 51 ], | 53 ], |
| 52 }, | 54 }, |
| 53 ], | 55 ], |
| 54 } | 56 } |
| OLD | NEW |