OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 9 'includes': [ |
10 ], | 10 ], |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'include_dirs': [ | 57 'include_dirs': [ |
58 '..' | 58 '..' |
59 ], | 59 ], |
60 'sources': [ | 60 'sources': [ |
61 'run_all_unittests.cc', | 61 'run_all_unittests.cc', |
62 'ipc_channel_mojo_unittest.cc', | 62 'ipc_channel_mojo_unittest.cc', |
63 ], | 63 ], |
64 'conditions': [ | 64 'conditions': [ |
65 ], | 65 ], |
66 }, | 66 }, |
| 67 { |
| 68 'target_name': 'ipc_mojo_perftests', |
| 69 'type': '<(gtest_target_type)', |
| 70 'dependencies': [ |
| 71 '../ipc.gyp:ipc', |
| 72 '../ipc.gyp:test_support_ipc', |
| 73 '../../base/base.gyp:base', |
| 74 '../../base/base.gyp:base_i18n', |
| 75 '../../base/base.gyp:test_support_base', |
| 76 '../../base/base.gyp:test_support_perf', |
| 77 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', |
| 78 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 79 '../../mojo/mojo_base.gyp:mojo_system_impl', |
| 80 '../../testing/gtest.gyp:gtest', |
| 81 'ipc_mojo', |
| 82 ], |
| 83 'include_dirs': [ |
| 84 '..' |
| 85 ], |
| 86 'sources': [ |
| 87 'ipc_mojo_perftest.cc', |
| 88 ], |
| 89 'conditions': [ |
| 90 ], |
| 91 }, |
67 ], | 92 ], |
68 } | 93 } |
OLD | NEW |