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

Side by Side Diff: content/content_tests.gypi

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update content_tests.gypi Created 7 years, 2 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 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 'java_in_dir': 'shell/android/browsertests_apk', 1287 'java_in_dir': 'shell/android/browsertests_apk',
1288 'resource_dir': 'shell/android/browsertests_apk/res', 1288 'resource_dir': 'shell/android/browsertests_apk/res',
1289 'native_lib_target': 'libcontent_browsertests', 1289 'native_lib_target': 'libcontent_browsertests',
1290 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1290 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1291 'asset_location': '<(ant_build_out)/content_shell/assets', 1291 'asset_location': '<(ant_build_out)/content_shell/assets',
1292 'is_test_apk': 1, 1292 'is_test_apk': 1,
1293 }, 1293 },
1294 'includes': [ '../build/java_apk.gypi' ], 1294 'includes': [ '../build/java_apk.gypi' ],
1295 }, 1295 },
1296 { 1296 {
1297 'target_name': 'content_linker_test_apk',
1298 'type': 'none',
1299 'dependencies': [
1300 'content_android_linker_test',
1301 'content.gyp:content_java',
1302 'content_shell_java',
1303 ],
1304 'variables': {
1305 'apk_name': 'ContentLinkerTest',
1306 'java_in_dir': 'shell/android/linker_test_apk',
1307 'resource_dir': 'shell/android/linker_test_apk/res',
1308 'native_lib_target': 'libcontent_android_linker_test',
1309 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1310 'asset_location': '<(ant_build_out)/content_shell/assets',
1311 'use_content_linker': '1',
1312 'enable_content_linker_tests': '1',
1313 },
1314 'includes': [ '../build/java_apk.gypi' ],
1315 },
1316 {
1317 'target_name': 'content_android_linker_test',
1318 'type': 'shared_library',
1319 'defines!': ['CONTENT_IMPLEMENTATION'],
1320 'dependencies': [
1321 'content_android_linker_test_jni_headers',
1322 'content_shell_lib',
1323 # Required to include "content/public/browser/android/compositor.h"
1324 # in content_linker_test_android.cc :-(
1325 '../skia/skia.gyp:skia',
1326 ],
1327 'sources': [
1328 'shell/android/linker_test_apk/content_linker_test_android.cc',
1329 'shell/android/linker_test_apk/content_linker_test_linker_tests.cc',
1330 ],
1331 },
1332 {
1333 'target_name': 'content_android_linker_test_jni_headers',
1334 'type': 'none',
1335 'sources': [
1336 'shell/android/linker_test_apk/src/org/chromium/content_linker_test_ apk/LinkerTests.java',
1337 ],
1338 'direct_dependent_settings': {
1339 'include_dirs': [
1340 '<(SHARED_INTERMEDIATE_DIR)/content/shell',
1341 ],
1342 },
1343 'variables': {
1344 'jni_gen_package': 'content/shell',
1345 },
1346 'includes': [ '../build/jni_generator.gypi' ],
1347 },
1348 {
1297 'target_name': 'video_decode_accelerator_unittest_apk', 1349 'target_name': 'video_decode_accelerator_unittest_apk',
1298 'type': 'none', 1350 'type': 'none',
1299 'dependencies': [ 1351 'dependencies': [
1300 'video_decode_accelerator_unittest', 1352 'video_decode_accelerator_unittest',
1301 ], 1353 ],
1302 'variables': { 1354 'variables': {
1303 'test_suite_name': 'video_decode_accelerator_unittest', 1355 'test_suite_name': 'video_decode_accelerator_unittest',
1304 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u nittests<(SHARED_LIB_SUFFIX)', 1356 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u nittests<(SHARED_LIB_SUFFIX)',
1305 }, 1357 },
1306 'includes': [ '../build/apk_test.gypi' ], 1358 'includes': [ '../build/apk_test.gypi' ],
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1556 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1505 }, 1557 },
1506 ], 1558 ],
1507 }], 1559 }],
1508 ], 1560 ],
1509 }, 1561 },
1510 ], 1562 ],
1511 }], 1563 }],
1512 ], 1564 ],
1513 } 1565 }
OLDNEW
« no previous file with comments | « content/content.gyp ('k') | content/public/android/java/src/org/chromium/content/app/ChildProcessService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698