| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 'keyboard_util.cc', | 70 'keyboard_util.cc', |
| 71 'keyboard_util.h', | 71 'keyboard_util.h', |
| 72 ] | 72 ] |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 'target_name': 'keyboard_unittests', | 75 'target_name': 'keyboard_unittests', |
| 76 'type': '<(gtest_target_type)', | 76 'type': '<(gtest_target_type)', |
| 77 'dependencies': [ | 77 'dependencies': [ |
| 78 '../../base/base.gyp:base', | 78 '../../base/base.gyp:base', |
| 79 '../../base/base.gyp:test_support_base', | 79 '../../base/base.gyp:test_support_base', |
| 80 '../../content/content.gyp:content_browser', | 80 '../../content/content.gyp:content', |
| 81 '../../skia/skia.gyp:skia', | 81 '../../skia/skia.gyp:skia', |
| 82 '../../testing/gtest.gyp:gtest', | 82 '../../testing/gtest.gyp:gtest', |
| 83 '../aura/aura.gyp:aura', | 83 '../aura/aura.gyp:aura', |
| 84 '../aura/aura.gyp:aura_test_support', | 84 '../aura/aura.gyp:aura_test_support', |
| 85 '../compositor/compositor.gyp:compositor', | 85 '../compositor/compositor.gyp:compositor', |
| 86 '../ui.gyp:run_ui_unittests', | 86 '../ui.gyp:run_ui_unittests', |
| 87 '../ui.gyp:ui', | 87 '../ui.gyp:ui', |
| 88 'keyboard', | 88 'keyboard', |
| 89 ], | 89 ], |
| 90 'sources': [ | 90 'sources': [ |
| 91 'keyboard_controller_unittest.cc', | 91 'keyboard_controller_unittest.cc', |
| 92 'keyboard_test_suite.cc', | 92 'keyboard_test_suite.cc', |
| 93 ], | 93 ], |
| 94 'conditions': [ | 94 'conditions': [ |
| 95 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 95 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 96 'conditions': [ | 96 'conditions': [ |
| 97 ['linux_use_tcmalloc==1', { | 97 ['linux_use_tcmalloc==1', { |
| 98 'dependencies': [ | 98 'dependencies': [ |
| 99 '../../base/allocator/allocator.gyp:allocator', | 99 '../../base/allocator/allocator.gyp:allocator', |
| 100 ], | 100 ], |
| 101 }], | 101 }], |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 ], | 106 ], |
| 107 } | 107 } |
| OLD | NEW |