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

Side by Side Diff: base/base.gyp

Issue 10802065: Android resource PAKs and native lib file path changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and update comment per joth@ suggestion Created 8 years, 4 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 ], 913 ],
914 }], 914 }],
915 ['OS == "android"', { 915 ['OS == "android"', {
916 'targets': [ 916 'targets': [
917 { 917 {
918 'target_name': 'base_jni_headers', 918 'target_name': 'base_jni_headers',
919 'type': 'none', 919 'type': 'none',
920 'sources': [ 920 'sources': [
921 'android/java/src/org/chromium/base/BuildInfo.java', 921 'android/java/src/org/chromium/base/BuildInfo.java',
922 'android/java/src/org/chromium/base/LocaleUtils.java', 922 'android/java/src/org/chromium/base/LocaleUtils.java',
923 'android/java/src/org/chromium/base/PathService.java',
923 'android/java/src/org/chromium/base/PathUtils.java', 924 'android/java/src/org/chromium/base/PathUtils.java',
924 'android/java/src/org/chromium/base/SystemMessageHandler.java', 925 'android/java/src/org/chromium/base/SystemMessageHandler.java',
925 ], 926 ],
926 'variables': { 927 'variables': {
927 'jni_gen_dir': 'base', 928 'jni_gen_dir': 'base',
928 }, 929 },
929 'includes': [ '../build/jni_generator.gypi' ], 930 'includes': [ '../build/jni_generator.gypi' ],
930 }, 931 },
931 { 932 {
932 'target_name': 'base_java', 933 'target_name': 'base_java',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 '--result', '<@(_outputs)', 1023 '--result', '<@(_outputs)',
1023 '--isolate', 'base_unittests.isolate', 1024 '--isolate', 'base_unittests.isolate',
1024 ], 1025 ],
1025 }, 1026 },
1026 ], 1027 ],
1027 }, 1028 },
1028 ], 1029 ],
1029 }], 1030 }],
1030 ], 1031 ],
1031 } 1032 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698