| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_browser', |
| 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 '../compositor/compositor.gyp:compositor_test_support', |
| 86 '../ui.gyp:run_ui_unittests', | 87 '../ui.gyp:run_ui_unittests', |
| 87 '../ui.gyp:ui', | 88 '../ui.gyp:ui', |
| 88 'keyboard', | 89 'keyboard', |
| 89 ], | 90 ], |
| 90 'sources': [ | 91 'sources': [ |
| 91 'keyboard_controller_unittest.cc', | 92 'keyboard_controller_unittest.cc', |
| 92 'keyboard_test_suite.cc', | 93 'keyboard_test_suite.cc', |
| 93 ], | 94 ], |
| 94 'conditions': [ | 95 'conditions': [ |
| 95 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 96 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 96 'conditions': [ | 97 'conditions': [ |
| 97 ['linux_use_tcmalloc==1', { | 98 ['linux_use_tcmalloc==1', { |
| 98 'dependencies': [ | 99 'dependencies': [ |
| 99 '../../base/allocator/allocator.gyp:allocator', | 100 '../../base/allocator/allocator.gyp:allocator', |
| 100 ], | 101 ], |
| 101 }], | 102 }], |
| 102 ], | 103 ], |
| 103 }], | 104 }], |
| 104 ], | 105 ], |
| 105 }, | 106 }, |
| 106 ], | 107 ], |
| 107 } | 108 } |
| OLD | NEW |