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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10830012: [Android] Add chrome_java target for building Java code in the chromium layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@reland
Patch Set: Created 8 years, 5 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) 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 4667 matching lines...) Expand 10 before | Expand all | Expand 10 after
4678 }], # 'coverage!=0' 4678 }], # 'coverage!=0'
4679 # Special target to wrap a gtest_target_type==shared_library 4679 # Special target to wrap a gtest_target_type==shared_library
4680 # unit_tests into an android apk for execution. 4680 # unit_tests into an android apk for execution.
4681 ['OS == "android" and gtest_target_type == "shared_library"', { 4681 ['OS == "android" and gtest_target_type == "shared_library"', {
4682 'targets': [ 4682 'targets': [
4683 { 4683 {
4684 'target_name': 'unit_tests_apk', 4684 'target_name': 'unit_tests_apk',
4685 'type': 'none', 4685 'type': 'none',
4686 'dependencies': [ 4686 'dependencies': [
4687 '../base/base.gyp:base_java', 4687 '../base/base.gyp:base_java',
4688 'chrome_java',
4688 'unit_tests', 4689 'unit_tests',
4689 ], 4690 ],
4690 'variables': { 4691 'variables': {
4691 'test_suite_name': 'unit_tests', 4692 'test_suite_name': 'unit_tests',
4692 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)unit_test s<(SHARED_LIB_SUFFIX)', 4693 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)unit_test s<(SHARED_LIB_SUFFIX)',
4693 'input_jars_paths': [ 4694 'input_jars_paths': [
4694 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', 4695 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
Yaron 2012/07/25 15:59:30 I didn't actually include the jar here. I was more
4695 ], 4696 ],
4696 }, 4697 },
4697 'includes': [ '../build/apk_test.gypi' ], 4698 'includes': [ '../build/apk_test.gypi' ],
4698 }, 4699 },
4699 ], 4700 ],
4700 }], 4701 }],
4701 ], # 'conditions' 4702 ], # 'conditions'
4702 } 4703 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698