Chromium Code Reviews| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 343 ], | 343 ], |
| 344 }, | 344 }, |
| 345 'sources': [ | 345 'sources': [ |
| 346 'public/c/test_support/test_support.h', | 346 'public/c/test_support/test_support.h', |
| 347 'public/c/test_support/test_support_export.h', | 347 'public/c/test_support/test_support_export.h', |
| 348 # TODO(vtl): Convert this to thunks http://crbug.com/386799 | 348 # TODO(vtl): Convert this to thunks http://crbug.com/386799 |
| 349 'public/tests/test_support_private.cc', | 349 'public/tests/test_support_private.cc', |
| 350 'public/tests/test_support_private.h', | 350 'public/tests/test_support_private.h', |
| 351 ], | 351 ], |
| 352 'conditions': [ | 352 'conditions': [ |
| 353 ['OS=="ios"', { | 353 'type': 'static_library', |
|
Ken Rockot(use gerrit already)
2016/05/05 22:22:31
move this outside of the conditions block
| |
| 354 'type': 'static_library', | |
| 355 }, { | |
| 356 'type': 'shared_library', | |
| 357 }], | |
| 358 ['OS=="mac"', { | 354 ['OS=="mac"', { |
| 359 'xcode_settings': { | 355 'xcode_settings': { |
| 360 # Make it a run-path dependent library. | 356 # Make it a run-path dependent library. |
| 361 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | 357 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 362 }, | 358 }, |
| 363 }], | 359 }], |
| 364 ], | 360 ], |
| 365 }, | 361 }, |
| 366 { | 362 { |
| 367 # GN version: //mojo/public/cpp/test_support:test_utils | 363 # GN version: //mojo/public/cpp/test_support:test_utils |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 543 'mojo_interface_bindings_java_sources', | 539 'mojo_interface_bindings_java_sources', |
| 544 'mojo_public_java', | 540 'mojo_public_java', |
| 545 '<(DEPTH)/base/base.gyp:base_java', | 541 '<(DEPTH)/base/base.gyp:base_java', |
| 546 ], | 542 ], |
| 547 'includes': [ '../build/java.gypi' ], | 543 'includes': [ '../build/java.gypi' ], |
| 548 }, | 544 }, |
| 549 ], | 545 ], |
| 550 }], | 546 }], |
| 551 ], | 547 ], |
| 552 } | 548 } |
| OLD | NEW |