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

Side by Side Diff: mojo/mojo_public.gyp

Issue 1963883002: mojo: make libmojo_public_test_support a static library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « mojo/mojo_js_unittests.isolate ('k') | mojo/mojo_public_bindings_unittests.isolate » ('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 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 'includes': [ 6 'includes': [
7 'mojo_variables.gypi', 7 'mojo_variables.gypi',
8 ], 8 ],
9 'target_defaults' : { 9 'target_defaults' : {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 # target's configuration. 322 # target's configuration.
323 'target_name': 'mojo_interface_bindings_generation', 323 'target_name': 'mojo_interface_bindings_generation',
324 'type': 'none', 324 'type': 'none',
325 'dependencies': [ 325 'dependencies': [
326 'mojo_interface_bindings_cpp_sources', 326 'mojo_interface_bindings_cpp_sources',
327 ], 327 ],
328 }, 328 },
329 { 329 {
330 # GN version: //mojo/public/c/test_support 330 # GN version: //mojo/public/c/test_support
331 'target_name': 'mojo_public_test_support', 331 'target_name': 'mojo_public_test_support',
332 'defines': [ 332 'type': 'static_library',
333 'MOJO_TEST_SUPPORT_IMPLEMENTATION',
334 ],
335 'include_dirs': [ 333 'include_dirs': [
336 '..', 334 '..',
337 ], 335 ],
338 'direct_dependent_settings': { 336 'direct_dependent_settings': {
339 'include_dirs': [ 337 'include_dirs': [
340 '..', 338 '..',
341 ], 339 ],
342 }, 340 },
343 'sources': [ 341 'sources': [
344 'public/c/test_support/test_support.h', 342 'public/c/test_support/test_support.h',
345 'public/c/test_support/test_support_export.h',
346 # TODO(vtl): Convert this to thunks http://crbug.com/386799 343 # TODO(vtl): Convert this to thunks http://crbug.com/386799
347 'public/tests/test_support_private.cc', 344 'public/tests/test_support_private.cc',
348 'public/tests/test_support_private.h', 345 'public/tests/test_support_private.h',
349 ], 346 ],
350 'conditions': [
351 ['OS=="ios"', {
352 'type': 'static_library',
353 }, {
354 'type': 'shared_library',
355 }],
356 ['OS=="mac"', {
357 'xcode_settings': {
358 # Make it a run-path dependent library.
359 'DYLIB_INSTALL_NAME_BASE': '@loader_path',
360 },
361 }],
362 ],
363 }, 347 },
364 { 348 {
365 # GN version: //mojo/public/cpp/test_support:test_utils 349 # GN version: //mojo/public/cpp/test_support:test_utils
366 'target_name': 'mojo_public_test_utils', 350 'target_name': 'mojo_public_test_utils',
367 'type': 'static_library', 351 'type': 'static_library',
368 'dependencies': [ 352 'dependencies': [
369 '../base/base.gyp:base', 353 '../base/base.gyp:base',
370 '../testing/gtest.gyp:gtest', 354 '../testing/gtest.gyp:gtest',
371 'mojo_public_test_support', 355 'mojo_public_test_support',
372 ], 356 ],
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 'mojo_interface_bindings_java_sources', 525 'mojo_interface_bindings_java_sources',
542 'mojo_public_java', 526 'mojo_public_java',
543 '<(DEPTH)/base/base.gyp:base_java', 527 '<(DEPTH)/base/base.gyp:base_java',
544 ], 528 ],
545 'includes': [ '../build/java.gypi' ], 529 'includes': [ '../build/java.gypi' ],
546 }, 530 },
547 ], 531 ],
548 }], 532 }],
549 ], 533 ],
550 } 534 }
OLDNEW
« no previous file with comments | « mojo/mojo_js_unittests.isolate ('k') | mojo/mojo_public_bindings_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698