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

Side by Side Diff: base/base.gyp

Issue 897683003: Know the process shared library loaded in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix webview compile error Created 5 years, 10 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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 'sources': [ 1367 'sources': [
1368 'android/java/templates/NativeLibraries.template', 1368 'android/java/templates/NativeLibraries.template',
1369 ], 1369 ],
1370 'variables': { 1370 'variables': {
1371 'package_name': 'org/chromium/base/library_loader', 1371 'package_name': 'org/chromium/base/library_loader',
1372 'template_deps': [], 1372 'template_deps': [],
1373 }, 1373 },
1374 'includes': [ '../build/android/java_cpp_template.gypi' ], 1374 'includes': [ '../build/android/java_cpp_template.gypi' ],
1375 }, 1375 },
1376 { 1376 {
1377 # GN: //base:base_library_process_type_gen
1378 'target_name': 'base_library_process_type_gen',
1379 'type': 'none',
1380 'sources': [
1381 'android/java/templates/LibraryProcessType.template',
1382 ],
1383 'variables': {
1384 'package_name': 'org/chromium/base/library_loader',
1385 'template_deps': ['android/library_loader/library_process_type_list. h'],
1386 },
1387 'includes': [ '../build/android/java_cpp_template.gypi' ],
Ted C 2015/02/06 01:37:43 instead of using the template, can you use java_cp
michaelbai 2015/02/10 05:17:31 Done.
1388 },
1389 {
1377 # GN: //base:base_java 1390 # GN: //base:base_java
1378 'target_name': 'base_java', 1391 'target_name': 'base_java',
1379 'type': 'none', 1392 'type': 'none',
1380 'variables': { 1393 'variables': {
1381 'java_in_dir': '../base/android/java', 1394 'java_in_dir': '../base/android/java',
1382 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1395 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1383 }, 1396 },
1384 'dependencies': [ 1397 'dependencies': [
1385 'base_java_application_state', 1398 'base_java_application_state',
1386 'base_java_library_load_from_apk_status_codes', 1399 'base_java_library_load_from_apk_status_codes',
1387 'base_java_memory_pressure_level', 1400 'base_java_memory_pressure_level',
1388 'base_native_libraries_gen', 1401 'base_native_libraries_gen',
1402 'base_library_process_type_gen',
1389 ], 1403 ],
1390 'includes': [ '../build/java.gypi' ], 1404 'includes': [ '../build/java.gypi' ],
1391 'conditions': [ 1405 'conditions': [
1392 ['android_webview_build==0', { 1406 ['android_webview_build==0', {
1393 'dependencies': [ 1407 'dependencies': [
1394 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1408 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1395 ], 1409 ],
1396 }] 1410 }]
1397 ], 1411 ],
1398 }, 1412 },
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 'dependencies': [ 1561 'dependencies': [
1548 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1562 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1549 ], 1563 ],
1550 }], 1564 }],
1551 ], 1565 ],
1552 }, 1566 },
1553 ], 1567 ],
1554 }], 1568 }],
1555 ], 1569 ],
1556 } 1570 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698