| 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 ], |
| 508 }], | 511 }], |
| 509 ], | 512 ], |
| 510 }, | 513 }, |
| 511 { | 514 { |
| 512 'target_name': 'content_browsertests', | 515 'target_name': 'content_browsertests', |
| 513 'type': 'executable', | 516 'type': 'executable', |
| 514 'defines!': ['CONTENT_IMPLEMENTATION'], | 517 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 515 'dependencies': [ | 518 'dependencies': [ |
| 516 'content_gpu', | 519 'content_gpu', |
| 517 'content_plugin', | 520 'content_plugin', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | 673 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
| 671 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 674 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
| 672 ], | 675 ], |
| 673 }, | 676 }, |
| 674 'includes': [ '../build/apk_test.gypi' ], | 677 'includes': [ '../build/apk_test.gypi' ], |
| 675 }, | 678 }, |
| 676 ], | 679 ], |
| 677 }], | 680 }], |
| 678 ], | 681 ], |
| 679 } | 682 } |
| OLD | NEW |