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

Side by Side Diff: base/base.gyp

Issue 10224004: Use Android API for GetDisplayNameForLocale(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 ], 525 ],
526 'conditions': [ 526 'conditions': [
527 ['OS == "android"', { 527 ['OS == "android"', {
528 'targets': [ 528 'targets': [
529 { 529 {
530 'target_name': 'base_jni_headers', 530 'target_name': 'base_jni_headers',
531 'type': 'none', 531 'type': 'none',
532 'variables': { 532 'variables': {
533 'java_sources': [ 533 'java_sources': [
534 'android/java/org/chromium/base/BuildInfo.java', 534 'android/java/org/chromium/base/BuildInfo.java',
535 'android/java/org/chromium/base/LocaleUtils.java',
535 'android/java/org/chromium/base/PathUtils.java', 536 'android/java/org/chromium/base/PathUtils.java',
536 'android/java/org/chromium/base/SystemMessageHandler.java', 537 'android/java/org/chromium/base/SystemMessageHandler.java',
537 ], 538 ],
538 'jni_headers': [ 539 'jni_headers': [
539 '<(SHARED_INTERMEDIATE_DIR)/base/jni/build_info_jni.h', 540 '<(SHARED_INTERMEDIATE_DIR)/base/jni/build_info_jni.h',
541 '<(SHARED_INTERMEDIATE_DIR)/base/jni/locale_utils_jni.h',
540 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', 542 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h',
541 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h' , 543 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h' ,
542 ], 544 ],
543 }, 545 },
544 'includes': [ '../build/jni_generator.gypi' ], 546 'includes': [ '../build/jni_generator.gypi' ],
545 }, 547 },
546 { 548 {
547 'target_name': 'base_java', 549 'target_name': 'base_java',
548 'type': 'none', 550 'type': 'none',
549 'variables': { 551 'variables': {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 '--ant-args', 679 '--ant-args',
678 '-DPRODUCT_DIR=<(PRODUCT_DIR)', 680 '-DPRODUCT_DIR=<(PRODUCT_DIR)',
679 '--ant-compile' 681 '--ant-compile'
680 ], 682 ],
681 }, 683 },
682 ] 684 ]
683 }], 685 }],
684 }], 686 }],
685 ], 687 ],
686 } 688 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698