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

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: address comments 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
1378 'target_name': 'base_library_process_type',
nyquist 2015/02/12 00:42:47 base_java_library_process_type. Same for GN.
michaelbai 2015/02/12 06:48:28 Done.
1379 'type': 'none',
1380 'variables': {
1381 'source_file': 'android/library_loader/library_loader_hooks.h',
1382 },
1383 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1384 },
1385 {
1377 # GN: //base:base_java 1386 # GN: //base:base_java
1378 'target_name': 'base_java', 1387 'target_name': 'base_java',
1379 'type': 'none', 1388 'type': 'none',
1380 'variables': { 1389 'variables': {
1381 'java_in_dir': '../base/android/java', 1390 'java_in_dir': '../base/android/java',
1382 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1391 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1383 }, 1392 },
1384 'dependencies': [ 1393 'dependencies': [
1385 'base_java_application_state', 1394 'base_java_application_state',
1386 'base_java_library_load_from_apk_status_codes', 1395 'base_java_library_load_from_apk_status_codes',
1387 'base_java_memory_pressure_level', 1396 'base_java_memory_pressure_level',
1388 'base_native_libraries_gen', 1397 'base_native_libraries_gen',
1398 'base_library_process_type',
1389 ], 1399 ],
1390 'includes': [ '../build/java.gypi' ], 1400 'includes': [ '../build/java.gypi' ],
1391 'conditions': [ 1401 'conditions': [
1392 ['android_webview_build==0', { 1402 ['android_webview_build==0', {
1393 'dependencies': [ 1403 'dependencies': [
1394 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1404 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1395 ], 1405 ],
1396 }] 1406 }]
1397 ], 1407 ],
1398 }, 1408 },
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 'dependencies': [ 1557 'dependencies': [
1548 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1558 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1549 ], 1559 ],
1550 }], 1560 }],
1551 ], 1561 ],
1552 }, 1562 },
1553 ], 1563 ],
1554 }], 1564 }],
1555 ], 1565 ],
1556 } 1566 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698