Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(834)

Side by Side Diff: mojo/mojo.gyp

Issue 160003007: Mojo: Make a public test_support shared library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased again Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/common/test/test_support_impl.cc ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 }, 61 },
62 { 62 {
63 'target_name': 'mojo_run_all_unittests', 63 'target_name': 'mojo_run_all_unittests',
64 'type': 'static_library', 64 'type': 'static_library',
65 'dependencies': [ 65 'dependencies': [
66 '../base/base.gyp:base', 66 '../base/base.gyp:base',
67 '../base/base.gyp:test_support_base', 67 '../base/base.gyp:test_support_base',
68 '../testing/gtest.gyp:gtest', 68 '../testing/gtest.gyp:gtest',
69 'mojo_system', 69 'mojo_system',
70 'mojo_system_impl', 70 'mojo_system_impl',
71 'mojo_test_support',
72 'mojo_test_support_impl',
71 ], 73 ],
72 'sources': [ 74 'sources': [
73 'common/test/run_all_unittests.cc', 75 'common/test/run_all_unittests.cc',
74 ], 76 ],
75 }, 77 },
76 { 78 {
77 'target_name': 'mojo_run_all_perftests', 79 'target_name': 'mojo_run_all_perftests',
78 'type': 'static_library', 80 'type': 'static_library',
79 'dependencies': [ 81 'dependencies': [
80 '../base/base.gyp:test_support_base', 82 '../base/base.gyp:test_support_base',
81 'mojo_system', 83 'mojo_system',
82 'mojo_system_impl', 84 'mojo_system_impl',
85 'mojo_test_support',
86 'mojo_test_support_impl',
83 ], 87 ],
84 'sources': [ 88 'sources': [
85 'common/test/run_all_perftests.cc', 89 'common/test/run_all_perftests.cc',
86 ], 90 ],
87 }, 91 },
88 { 92 {
89 'target_name': 'mojo_system_impl', 93 'target_name': 'mojo_system_impl',
90 'type': '<(component)', 94 'type': '<(component)',
91 'dependencies': [ 95 'dependencies': [
92 'mojo_system', 96 'mojo_system',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'gles2/command_buffer_client_impl.cc', 208 'gles2/command_buffer_client_impl.cc',
205 'gles2/command_buffer_client_impl.h', 209 'gles2/command_buffer_client_impl.h',
206 'gles2/gles2_impl_export.h', 210 'gles2/gles2_impl_export.h',
207 'gles2/gles2_support_impl.cc', 211 'gles2/gles2_support_impl.cc',
208 'gles2/gles2_support_impl.h', 212 'gles2/gles2_support_impl.h',
209 'gles2/gles2_context.cc', 213 'gles2/gles2_context.cc',
210 'gles2/gles2_context.h', 214 'gles2/gles2_context.h',
211 ], 215 ],
212 }, 216 },
213 { 217 {
218 'target_name': 'mojo_test_support_impl',
219 'type': 'static_library',
220 'dependencies': [
221 '../base/base.gyp:base',
222 ],
223 'sources': [
224 'common/test/test_support_impl.cc',
225 'common/test/test_support_impl.h',
226 ],
227 },
228 {
214 'target_name': 'mojo_common_lib', 229 'target_name': 'mojo_common_lib',
215 'type': '<(component)', 230 'type': '<(component)',
216 'defines': [ 231 'defines': [
217 'MOJO_COMMON_IMPLEMENTATION', 232 'MOJO_COMMON_IMPLEMENTATION',
218 ], 233 ],
219 'dependencies': [ 234 'dependencies': [
220 '../base/base.gyp:base', 235 '../base/base.gyp:base',
221 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 236 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
222 'mojo_system', 237 'mojo_system',
223 ], 238 ],
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 474 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
460 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 475 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
461 'native_lib_target': 'libmojo_shell', 476 'native_lib_target': 'libmojo_shell',
462 }, 477 },
463 'includes': [ '../build/java_apk.gypi' ], 478 'includes': [ '../build/java_apk.gypi' ],
464 } 479 }
465 ], 480 ],
466 }], 481 }],
467 ], 482 ],
468 } 483 }
OLDNEW
« no previous file with comments | « mojo/common/test/test_support_impl.cc ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698