| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 ], | 498 ], |
| 499 }, { # OS != "android" | 499 }, { # OS != "android" |
| 500 'dependencies': [ | 500 'dependencies': [ |
| 501 '../third_party/libvpx/libvpx.gyp:libvpx', | 501 '../third_party/libvpx/libvpx.gyp:libvpx', |
| 502 ], | 502 ], |
| 503 }], | 503 }], |
| 504 ['OS == "android" and gtest_target_type == "shared_library"', { | 504 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 505 'dependencies': [ | 505 'dependencies': [ |
| 506 '../testing/android/native_test.gyp:native_test_native_code', | 506 '../testing/android/native_test.gyp:native_test_native_code', |
| 507 ], | 507 ], |
| 508 'defines': [ | |
| 509 'REGISTER_CONTENT_UNITESTS_JNI', | |
| 510 ], | |
| 511 }], | 508 }], |
| 512 ], | 509 ], |
| 513 }, | 510 }, |
| 514 { | 511 { |
| 515 'target_name': 'content_browsertests', | 512 'target_name': 'content_browsertests', |
| 516 'type': 'executable', | 513 'type': 'executable', |
| 517 'defines!': ['CONTENT_IMPLEMENTATION'], | 514 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 518 'dependencies': [ | 515 'dependencies': [ |
| 519 'content_gpu', | 516 'content_gpu', |
| 520 'content_plugin', | 517 'content_plugin', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | 670 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
| 674 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 671 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
| 675 ], | 672 ], |
| 676 }, | 673 }, |
| 677 'includes': [ '../build/apk_test.gypi' ], | 674 'includes': [ '../build/apk_test.gypi' ], |
| 678 }, | 675 }, |
| 679 ], | 676 ], |
| 680 }], | 677 }], |
| 681 ], | 678 ], |
| 682 } | 679 } |
| OLD | NEW |