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

Side by Side Diff: base/base.gyp

Issue 663543003: Fix low-memory devices crashing on Chrome start up during UMA recodring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify Java-C++ enum sharing and fix WebView dependency Created 6 years, 1 month 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 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1336 { 1336 {
1337 # GN: //base:base_java 1337 # GN: //base:base_java
1338 'target_name': 'base_java', 1338 'target_name': 'base_java',
1339 'type': 'none', 1339 'type': 'none',
1340 'variables': { 1340 'variables': {
1341 'java_in_dir': '../base/android/java', 1341 'java_in_dir': '../base/android/java',
1342 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1342 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1343 }, 1343 },
1344 'dependencies': [ 1344 'dependencies': [
1345 'base_java_application_state', 1345 'base_java_application_state',
1346 'base_java_library_load_from_apk_status_codes',
1346 'base_java_memory_pressure_level', 1347 'base_java_memory_pressure_level',
1347 'base_native_libraries_gen', 1348 'base_native_libraries_gen',
1348 ], 1349 ],
1349 'includes': [ '../build/java.gypi' ], 1350 'includes': [ '../build/java.gypi' ],
1350 'conditions': [ 1351 'conditions': [
1351 ['android_webview_build==0', { 1352 ['android_webview_build==0', {
1352 'dependencies': [ 1353 'dependencies': [
1353 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1354 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1354 ], 1355 ],
1355 }] 1356 }]
(...skipping 15 matching lines...) Expand all
1371 # GN: //base:base_android_java_enums_srcjar 1372 # GN: //base:base_android_java_enums_srcjar
1372 'target_name': 'base_java_application_state', 1373 'target_name': 'base_java_application_state',
1373 'type': 'none', 1374 'type': 'none',
1374 'variables': { 1375 'variables': {
1375 'source_file': 'android/application_status_listener.h', 1376 'source_file': 'android/application_status_listener.h',
1376 }, 1377 },
1377 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1378 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1378 }, 1379 },
1379 { 1380 {
1380 # GN: //base:base_android_java_enums_srcjar 1381 # GN: //base:base_android_java_enums_srcjar
1382 'target_name': 'base_java_library_load_from_apk_status_codes',
1383 'type': 'none',
1384 'variables': {
1385 'source_file': 'android/library_loader/library_load_from_apk_status_ codes.h'
1386 },
1387 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1388 },
1389 {
1390 # GN: //base:base_android_java_enums_srcjar
1381 'target_name': 'base_java_memory_pressure_level', 1391 'target_name': 'base_java_memory_pressure_level',
1382 'type': 'none', 1392 'type': 'none',
1383 'variables': { 1393 'variables': {
1384 'source_file': 'memory/memory_pressure_listener.h', 1394 'source_file': 'memory/memory_pressure_listener.h',
1385 }, 1395 },
1386 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1396 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1387 }, 1397 },
1388 { 1398 {
1389 # GN: //base:base_java_test_support 1399 # GN: //base:base_java_test_support
1390 'target_name': 'base_java_test_support', 1400 'target_name': 'base_java_test_support',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 'dependencies': [ 1507 'dependencies': [
1498 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1508 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1499 ], 1509 ],
1500 }], 1510 }],
1501 ], 1511 ],
1502 }, 1512 },
1503 ], 1513 ],
1504 }], 1514 }],
1505 ], 1515 ],
1506 } 1516 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698