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

Side by Side Diff: base/base.gyp

Issue 159173002: Refactor ActivityStatus to not store current activity (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Comments Created 6 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 | 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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 }, 1305 },
1306 { 1306 {
1307 'target_name': 'base_java', 1307 'target_name': 'base_java',
1308 'type': 'none', 1308 'type': 'none',
1309 'variables': { 1309 'variables': {
1310 'java_in_dir': '../base/android/java', 1310 'java_in_dir': '../base/android/java',
1311 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1311 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1312 }, 1312 },
1313 'dependencies': [ 1313 'dependencies': [
1314 'base_java_activity_state', 1314 'base_java_activity_state',
1315 'base_java_application_state',
1315 'base_java_memory_pressure_level_list', 1316 'base_java_memory_pressure_level_list',
1316 'base_native_libraries_gen', 1317 'base_native_libraries_gen',
1317 ], 1318 ],
1318 'includes': [ '../build/java.gypi' ], 1319 'includes': [ '../build/java.gypi' ],
1319 'conditions': [ 1320 'conditions': [
1320 ['android_webview_build==0', { 1321 ['android_webview_build==0', {
1321 'dependencies': [ 1322 'dependencies': [
1322 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1323 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1323 ], 1324 ],
1324 }] 1325 }]
(...skipping 20 matching lines...) Expand all
1345 'sources': [ 1346 'sources': [
1346 'android/java/src/org/chromium/base/ActivityState.template', 1347 'android/java/src/org/chromium/base/ActivityState.template',
1347 ], 1348 ],
1348 'variables': { 1349 'variables': {
1349 'package_name': 'org/chromium/base', 1350 'package_name': 'org/chromium/base',
1350 'template_deps': ['android/activity_state_list.h'], 1351 'template_deps': ['android/activity_state_list.h'],
1351 }, 1352 },
1352 'includes': [ '../build/android/java_cpp_template.gypi' ], 1353 'includes': [ '../build/android/java_cpp_template.gypi' ],
1353 }, 1354 },
1354 { 1355 {
1356 'target_name': 'base_java_application_state',
1357 'type': 'none',
1358 # This target is used to auto-generate ApplicationState.java
1359 # from a template file. The source file contains a list of
1360 # Java constant declarations matching the ones in
1361 # android/application_state_list.h.
1362 'sources': [
1363 'android/java/src/org/chromium/base/ApplicationState.template',
1364 ],
1365 'variables': {
1366 'package_name': 'org/chromium/base',
1367 'template_deps': ['android/application_state_list.h'],
1368 },
1369 'includes': [ '../build/android/java_cpp_template.gypi' ],
1370 },
1371 {
1355 'target_name': 'base_java_memory_pressure_level_list', 1372 'target_name': 'base_java_memory_pressure_level_list',
1356 'type': 'none', 1373 'type': 'none',
1357 'sources': [ 1374 'sources': [
1358 'android/java/src/org/chromium/base/MemoryPressureLevelList.template ', 1375 'android/java/src/org/chromium/base/MemoryPressureLevelList.template ',
1359 ], 1376 ],
1360 'variables': { 1377 'variables': {
1361 'package_name': 'org/chromium/base', 1378 'package_name': 'org/chromium/base',
1362 'template_deps': ['memory/memory_pressure_level_list.h'], 1379 'template_deps': ['memory/memory_pressure_level_list.h'],
1363 }, 1380 },
1364 'includes': [ '../build/android/java_cpp_template.gypi' ], 1381 'includes': [ '../build/android/java_cpp_template.gypi' ],
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 'base_unittests.isolate', 1475 'base_unittests.isolate',
1459 ], 1476 ],
1460 'sources': [ 1477 'sources': [
1461 'base_unittests.isolate', 1478 'base_unittests.isolate',
1462 ], 1479 ],
1463 }, 1480 },
1464 ], 1481 ],
1465 }], 1482 }],
1466 ], 1483 ],
1467 } 1484 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698