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

Side by Side Diff: base/base.gyp

Issue 157033007: API to Convert Java Bitmap Config to SkBitmap::Config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Auto generation of Bitmap Format enum in Java and C++. 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
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 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1292 }, 1292 },
1293 { 1293 {
1294 'target_name': 'base_java', 1294 'target_name': 'base_java',
1295 'type': 'none', 1295 'type': 'none',
1296 'variables': { 1296 'variables': {
1297 'java_in_dir': '../base/android/java', 1297 'java_in_dir': '../base/android/java',
1298 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 1298 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1299 }, 1299 },
1300 'dependencies': [ 1300 'dependencies': [
1301 'base_java_activity_state', 1301 'base_java_activity_state',
1302 'base_java_bitmap_config',
1302 'base_java_memory_pressure_level_list', 1303 'base_java_memory_pressure_level_list',
1303 'base_native_libraries_gen', 1304 'base_native_libraries_gen',
1304 ], 1305 ],
1305 'includes': [ '../build/java.gypi' ], 1306 'includes': [ '../build/java.gypi' ],
1306 'conditions': [ 1307 'conditions': [
1307 ['android_webview_build==0', { 1308 ['android_webview_build==0', {
1308 'dependencies': [ 1309 'dependencies': [
1309 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 1310 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1310 ], 1311 ],
1311 }] 1312 }]
(...skipping 20 matching lines...) Expand all
1332 'sources': [ 1333 'sources': [
1333 'android/java/src/org/chromium/base/ActivityState.template', 1334 'android/java/src/org/chromium/base/ActivityState.template',
1334 ], 1335 ],
1335 'variables': { 1336 'variables': {
1336 'package_name': 'org/chromium/base', 1337 'package_name': 'org/chromium/base',
1337 'template_deps': ['android/activity_state_list.h'], 1338 'template_deps': ['android/activity_state_list.h'],
1338 }, 1339 },
1339 'includes': [ '../build/android/java_cpp_template.gypi' ], 1340 'includes': [ '../build/android/java_cpp_template.gypi' ],
1340 }, 1341 },
1341 { 1342 {
1343 'target_name': 'base_java_bitmap_config',
1344 'type': 'none',
1345 # This target is used to auto-generate BitmapFormat.java
1346 # from a template file. The source file contains a list of
1347 # Java constant declarations matching the ones in
1348 # android/bitmap_config_list.h.
1349 'sources': [
1350 'android/java/src/org/chromium/base/BitmapFormat.template',
1351 ],
1352 'variables': {
1353 'package_name': 'org/chromium/ui/gfx',
1354 'template_deps': ['android/bitmap_config_list.h'],
1355 },
1356 'includes': [ '../build/android/java_cpp_template.gypi' ],
1357 },
1358 {
1342 'target_name': 'base_java_memory_pressure_level_list', 1359 'target_name': 'base_java_memory_pressure_level_list',
1343 'type': 'none', 1360 'type': 'none',
1344 'sources': [ 1361 'sources': [
1345 'android/java/src/org/chromium/base/MemoryPressureLevelList.template ', 1362 'android/java/src/org/chromium/base/MemoryPressureLevelList.template ',
1346 ], 1363 ],
1347 'variables': { 1364 'variables': {
1348 'package_name': 'org/chromium/base', 1365 'package_name': 'org/chromium/base',
1349 'template_deps': ['memory/memory_pressure_level_list.h'], 1366 'template_deps': ['memory/memory_pressure_level_list.h'],
1350 }, 1367 },
1351 'includes': [ '../build/android/java_cpp_template.gypi' ], 1368 'includes': [ '../build/android/java_cpp_template.gypi' ],
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 'base_unittests.isolate', 1462 'base_unittests.isolate',
1446 ], 1463 ],
1447 'sources': [ 1464 'sources': [
1448 'base_unittests.isolate', 1465 'base_unittests.isolate',
1449 ], 1466 ],
1450 }, 1467 },
1451 ], 1468 ],
1452 }], 1469 }],
1453 ], 1470 ],
1454 } 1471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698