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

Side by Side Diff: content/content_tests.gypi

Issue 141223002: Move the android library loader from content to base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix final nits Created 6 years, 10 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'dependencies': [ 10 'dependencies': [
(...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after
1379 'apk_name': 'content_browsertests', 1379 'apk_name': 'content_browsertests',
1380 'java_in_dir': 'shell/android/browsertests_apk', 1380 'java_in_dir': 'shell/android/browsertests_apk',
1381 'resource_dir': 'shell/android/browsertests_apk/res', 1381 'resource_dir': 'shell/android/browsertests_apk/res',
1382 'native_lib_target': 'libcontent_browsertests', 1382 'native_lib_target': 'libcontent_browsertests',
1383 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1383 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1384 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1384 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1385 }, 1385 },
1386 'includes': [ '../build/java_apk.gypi' ], 1386 'includes': [ '../build/java_apk.gypi' ],
1387 }, 1387 },
1388 { 1388 {
1389 'target_name': 'content_linker_test_apk', 1389 'target_name': 'chromium_linker_test_apk',
1390 'type': 'none', 1390 'type': 'none',
1391 'dependencies': [ 1391 'dependencies': [
1392 'content_android_linker_test', 1392 'chromium_android_linker_test',
1393 'content.gyp:content_java', 1393 'content.gyp:content_java',
1394 'content_shell_java', 1394 'content_shell_java',
1395 ], 1395 ],
1396 'variables': { 1396 'variables': {
1397 'apk_name': 'ContentLinkerTest', 1397 'apk_name': 'ChromiumLinkerTest',
1398 'java_in_dir': 'shell/android/linker_test_apk', 1398 'java_in_dir': 'shell/android/linker_test_apk',
1399 'resource_dir': 'shell/android/linker_test_apk/res', 1399 'resource_dir': 'shell/android/linker_test_apk/res',
1400 'native_lib_target': 'libcontent_android_linker_test', 1400 'native_lib_target': 'libchromium_android_linker_test',
1401 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1401 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1402 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1402 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1403 'use_content_linker': '1', 1403 'use_chromium_linker': '1',
1404 'enable_content_linker_tests': '1', 1404 'enable_chromium_linker_tests': '1',
1405 }, 1405 },
1406 'includes': [ '../build/java_apk.gypi' ], 1406 'includes': [ '../build/java_apk.gypi' ],
1407 }, 1407 },
1408 { 1408 {
1409 'target_name': 'content_android_linker_test', 1409 'target_name': 'chromium_android_linker_test',
1410 'type': 'shared_library', 1410 'type': 'shared_library',
1411 'defines!': ['CONTENT_IMPLEMENTATION'], 1411 'defines!': ['CONTENT_IMPLEMENTATION'],
1412 'dependencies': [ 1412 'dependencies': [
1413 'content_android_linker_test_jni_headers', 1413 'chromium_android_linker_test_jni_headers',
1414 'content_shell_lib', 1414 'content_shell_lib',
1415 # Required to include "content/public/browser/android/compositor.h" 1415 # Required to include "content/public/browser/android/compositor.h"
1416 # in content_linker_test_android.cc :-( 1416 # in chromium_linker_test_android.cc :-(
1417 '../skia/skia.gyp:skia', 1417 '../skia/skia.gyp:skia',
1418 ], 1418 ],
1419 'sources': [ 1419 'sources': [
1420 'shell/android/linker_test_apk/content_linker_test_android.cc', 1420 'shell/android/linker_test_apk/chromium_linker_test_android.cc',
1421 'shell/android/linker_test_apk/content_linker_test_linker_tests.cc', 1421 'shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc' ,
1422 ], 1422 ],
1423 }, 1423 },
1424 { 1424 {
1425 'target_name': 'content_android_linker_test_jni_headers', 1425 'target_name': 'chromium_android_linker_test_jni_headers',
1426 'type': 'none', 1426 'type': 'none',
1427 'sources': [ 1427 'sources': [
1428 'shell/android/linker_test_apk/src/org/chromium/content_linker_test_ apk/LinkerTests.java', 1428 'shell/android/linker_test_apk/src/org/chromium/chromium_linker_test _apk/LinkerTests.java',
1429 ], 1429 ],
1430 'variables': { 1430 'variables': {
1431 'jni_gen_package': 'content/shell', 1431 'jni_gen_package': 'content/shell',
1432 'jni_generator_ptr_type': 'long', 1432 'jni_generator_ptr_type': 'long',
1433 }, 1433 },
1434 'includes': [ '../build/jni_generator.gypi' ], 1434 'includes': [ '../build/jni_generator.gypi' ],
1435 }, 1435 },
1436 { 1436 {
1437 'target_name': 'video_decode_accelerator_unittest_apk', 1437 'target_name': 'video_decode_accelerator_unittest_apk',
1438 'type': 'none', 1438 'type': 'none',
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1640 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1641 }, 1641 },
1642 ], 1642 ],
1643 }], 1643 }],
1644 ], 1644 ],
1645 }, 1645 },
1646 ], 1646 ],
1647 }], 1647 }],
1648 ], 1648 ],
1649 } 1649 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698