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

Side by Side Diff: base/base.gyp

Issue 456493002: Add native libraries to gn apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 'includes': [ '../build/jni_generator.gypi' ], 1309 'includes': [ '../build/jni_generator.gypi' ],
1310 }, 1310 },
1311 { 1311 {
1312 'target_name': 'base_native_libraries_gen', 1312 'target_name': 'base_native_libraries_gen',
1313 'type': 'none', 1313 'type': 'none',
1314 'sources': [ 1314 'sources': [
1315 'android/java/templates/NativeLibraries.template', 1315 'android/java/templates/NativeLibraries.template',
1316 ], 1316 ],
1317 'variables': { 1317 'variables': {
1318 'package_name': 'org/chromium/base/library_loader', 1318 'package_name': 'org/chromium/base/library_loader',
1319 'include_path': 'android/java/templates', 1319 'template_deps': [],
1320 'template_deps': [
1321 'android/java/templates/native_libraries_array.h'
1322 ],
1323 }, 1320 },
1324 'includes': [ '../build/android/java_cpp_template.gypi' ], 1321 'includes': [ '../build/android/java_cpp_template.gypi' ],
1325 }, 1322 },
1326 { 1323 {
1327 'target_name': 'base_java', 1324 'target_name': 'base_java',
1328 'type': 'none', 1325 'type': 'none',
1329 'variables': { 1326 'variables': {
1330 'java_in_dir': '../base/android/java', 1327 'java_in_dir': '../base/android/java',
1331 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1328 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1332 }, 1329 },
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
1500 'dependencies': [ 1497 'dependencies': [
1501 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1498 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1502 ], 1499 ],
1503 }], 1500 }],
1504 ], 1501 ],
1505 }, 1502 },
1506 ], 1503 ],
1507 }], 1504 }],
1508 ], 1505 ],
1509 } 1506 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698