| 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 '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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 # target's configuration. | 324 # target's configuration. |
| 325 'target_name': 'mojo_interface_bindings_generation', | 325 'target_name': 'mojo_interface_bindings_generation', |
| 326 'type': 'none', | 326 'type': 'none', |
| 327 'dependencies': [ | 327 'dependencies': [ |
| 328 'mojo_interface_bindings_cpp_sources', | 328 'mojo_interface_bindings_cpp_sources', |
| 329 ], | 329 ], |
| 330 }, | 330 }, |
| 331 { | 331 { |
| 332 # GN version: //mojo/public/c/test_support | 332 # GN version: //mojo/public/c/test_support |
| 333 'target_name': 'mojo_public_test_support', | 333 'target_name': 'mojo_public_test_support', |
| 334 'defines': [ | 334 'type': 'static_library', |
| 335 'MOJO_TEST_SUPPORT_IMPLEMENTATION', | |
| 336 ], | |
| 337 'include_dirs': [ | 335 'include_dirs': [ |
| 338 '..', | 336 '..', |
| 339 ], | 337 ], |
| 340 'direct_dependent_settings': { | 338 'direct_dependent_settings': { |
| 341 'include_dirs': [ | 339 'include_dirs': [ |
| 342 '..', | 340 '..', |
| 343 ], | 341 ], |
| 344 }, | 342 }, |
| 345 'sources': [ | 343 'sources': [ |
| 346 'public/c/test_support/test_support.h', | 344 'public/c/test_support/test_support.h', |
| 347 'public/c/test_support/test_support_export.h', | |
| 348 # TODO(vtl): Convert this to thunks http://crbug.com/386799 | 345 # TODO(vtl): Convert this to thunks http://crbug.com/386799 |
| 349 'public/tests/test_support_private.cc', | 346 'public/tests/test_support_private.cc', |
| 350 'public/tests/test_support_private.h', | 347 'public/tests/test_support_private.h', |
| 351 ], | 348 ], |
| 352 'conditions': [ | |
| 353 ['OS=="ios"', { | |
| 354 'type': 'static_library', | |
| 355 }, { | |
| 356 'type': 'shared_library', | |
| 357 }], | |
| 358 ['OS=="mac"', { | |
| 359 'xcode_settings': { | |
| 360 # Make it a run-path dependent library. | |
| 361 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | |
| 362 }, | |
| 363 }], | |
| 364 ], | |
| 365 }, | 349 }, |
| 366 { | 350 { |
| 367 # GN version: //mojo/public/cpp/test_support:test_utils | 351 # GN version: //mojo/public/cpp/test_support:test_utils |
| 368 'target_name': 'mojo_public_test_utils', | 352 'target_name': 'mojo_public_test_utils', |
| 369 'type': 'static_library', | 353 'type': 'static_library', |
| 370 'dependencies': [ | 354 'dependencies': [ |
| 371 '../base/base.gyp:base', | 355 '../base/base.gyp:base', |
| 372 '../testing/gtest.gyp:gtest', | 356 '../testing/gtest.gyp:gtest', |
| 373 'mojo_public_test_support', | 357 'mojo_public_test_support', |
| 374 ], | 358 ], |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 'mojo_interface_bindings_java_sources', | 527 'mojo_interface_bindings_java_sources', |
| 544 'mojo_public_java', | 528 'mojo_public_java', |
| 545 '<(DEPTH)/base/base.gyp:base_java', | 529 '<(DEPTH)/base/base.gyp:base_java', |
| 546 ], | 530 ], |
| 547 'includes': [ '../build/java.gypi' ], | 531 'includes': [ '../build/java.gypi' ], |
| 548 }, | 532 }, |
| 549 ], | 533 ], |
| 550 }], | 534 }], |
| 551 ], | 535 ], |
| 552 } | 536 } |
| OLD | NEW |