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

Side by Side Diff: base/base.gyp

Issue 23522032: Change method of activity tracking done in ActivityStatus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 'java_in_dir': '../base/android/java', 1208 'java_in_dir': '../base/android/java',
1209 }, 1209 },
1210 'dependencies': [ 1210 'dependencies': [
1211 'base_java_activity_state', 1211 'base_java_activity_state',
1212 'base_java_memory_pressure_level_list', 1212 'base_java_memory_pressure_level_list',
1213 ], 1213 ],
1214 'includes': [ '../build/java.gypi' ], 1214 'includes': [ '../build/java.gypi' ],
1215 'conditions': [ 1215 'conditions': [
1216 ['android_webview_build==0', { 1216 ['android_webview_build==0', {
1217 'dependencies': [ 1217 'dependencies': [
1218 '../third_party/guava/guava.gyp:guava_javalib',
David Trainor- moved to gerrit 2013/09/12 22:12:32 ?
Ted C 2013/09/12 23:14:54 Needed for VisibleForTesting
1218 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1219 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1219 ], 1220 ],
1220 }] 1221 }]
1221 ], 1222 ],
1222 }, 1223 },
1223 { 1224 {
1224 'target_name': 'base_java_activity_state', 1225 'target_name': 'base_java_activity_state',
1225 'type': 'none', 1226 'type': 'none',
1226 # This target is used to auto-generate ActivityState.java 1227 # This target is used to auto-generate ActivityState.java
1227 # from a template file. The source file contains a list of 1228 # from a template file. The source file contains a list of
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 'base_unittests.isolate', 1326 'base_unittests.isolate',
1326 ], 1327 ],
1327 'sources': [ 1328 'sources': [
1328 'base_unittests.isolate', 1329 'base_unittests.isolate',
1329 ], 1330 ],
1330 }, 1331 },
1331 ], 1332 ],
1332 }], 1333 }],
1333 ], 1334 ],
1334 } 1335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698