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

Side by Side Diff: base/base.gyp

Issue 10818039: Upstream Android LongPressDetector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 'base_java', 992 'base_java',
993 'base_unittests', 993 'base_unittests',
994 ], 994 ],
995 'variables': { 995 'variables': {
996 'test_suite_name': 'base_unittests', 996 'test_suite_name': 'base_unittests',
997 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)', 997 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)',
998 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], 998 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',],
999 }, 999 },
1000 'includes': [ '../build/apk_test.gypi' ], 1000 'includes': [ '../build/apk_test.gypi' ],
1001 }, 1001 },
1002 {
1003 'target_name': 'base_javatests',
1004 'type': 'none',
1005 'dependencies': [
1006 'base_java',
1007 ],
1008 'variables': {
1009 'package_name': 'base_javatests',
1010 'java_in_dir': '../base/android/javatests',
1011 },
1012 'includes': [ '../build/java.gypi' ],
1013 },
1002 ], 1014 ],
1003 }], 1015 }],
1004 ], 1016 ],
1005 } 1017 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698