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

Side by Side Diff: printing/printing.gyp

Issue 83283002: Android: change native pointer types from int to long in src/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add jni_generator_ptr_type to gyp Created 7 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 ['OS == "android"', { 332 ['OS == "android"', {
333 'targets': [ 333 'targets': [
334 { 334 {
335 'target_name': 'printing_jni_headers', 335 'target_name': 'printing_jni_headers',
336 'type': 'none', 336 'type': 'none',
337 'sources': [ 337 'sources': [
338 'android/java/src/org/chromium/printing/PrintingContext.java', 338 'android/java/src/org/chromium/printing/PrintingContext.java',
339 ], 339 ],
340 'variables': { 340 'variables': {
341 'jni_gen_package': 'printing', 341 'jni_gen_package': 'printing',
342 'jni_generator_ptr_type': 'long',
342 }, 343 },
343 'includes': [ '../build/jni_generator.gypi' ], 344 'includes': [ '../build/jni_generator.gypi' ],
344 }, 345 },
345 { 346 {
346 'target_name': 'printing_java', 347 'target_name': 'printing_java',
347 'type': 'none', 348 'type': 'none',
348 'variables': { 349 'variables': {
349 'java_in_dir': '../printing/android/java', 350 'java_in_dir': '../printing/android/java',
350 }, 351 },
351 'dependencies': [ 352 'dependencies': [
352 '../base/base.gyp:base_java', 353 '../base/base.gyp:base_java',
353 ], 354 ],
354 'includes': [ '../build/java.gypi' ], 355 'includes': [ '../build/java.gypi' ],
355 } 356 }
356 ] 357 ]
357 }], 358 }],
358 ] 359 ]
359 } 360 }
OLDNEW
« no previous file with comments | « printing/android/java/src/org/chromium/printing/PrintingContext.java ('k') | printing/printing_context_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698