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

Side by Side Diff: ui/ui.gyp

Issue 14018004: [Android] Refactor NativeView to be able to use it for AutofillDialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ruslan's nits Created 7 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
« ui/android/view_android.cc ('K') | « ui/gfx/native_widget_types.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 23 matching lines...) Expand all
34 ], 34 ],
35 # Export these dependencies since text_elider.h includes ICU headers. 35 # Export these dependencies since text_elider.h includes ICU headers.
36 'export_dependent_settings': [ 36 'export_dependent_settings': [
37 '../net/net.gyp:net', 37 '../net/net.gyp:net',
38 '../third_party/icu/icu.gyp:icui18n', 38 '../third_party/icu/icu.gyp:icui18n',
39 '../third_party/icu/icu.gyp:icuuc', 39 '../third_party/icu/icu.gyp:icuuc',
40 ], 40 ],
41 'sources' : [ 41 'sources' : [
42 'android/ui_jni_registrar.cc', 42 'android/ui_jni_registrar.cc',
43 'android/ui_jni_registrar.h', 43 'android/ui_jni_registrar.h',
44 'android/view_android.cc',
45 'android/view_android.h',
44 'base/accelerators/accelerator.cc', 46 'base/accelerators/accelerator.cc',
45 'base/accelerators/accelerator.h', 47 'base/accelerators/accelerator.h',
46 'base/accelerators/platform_accelerator.h', 48 'base/accelerators/platform_accelerator.h',
47 'base/accelerators/platform_accelerator_cocoa.h', 49 'base/accelerators/platform_accelerator_cocoa.h',
48 'base/accelerators/platform_accelerator_cocoa.mm', 50 'base/accelerators/platform_accelerator_cocoa.mm',
49 'base/accelerators/platform_accelerator_gtk.cc', 51 'base/accelerators/platform_accelerator_gtk.cc',
50 'base/accelerators/platform_accelerator_gtk.h', 52 'base/accelerators/platform_accelerator_gtk.h',
51 'base/accelerators/accelerator_manager.cc', 53 'base/accelerators/accelerator_manager.cc',
52 'base/accelerators/accelerator_manager.h', 54 'base/accelerators/accelerator_manager.h',
53 'base/accessibility/accessibility_types.h', 55 'base/accessibility/accessibility_types.h',
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 ['OS=="android"' , { 876 ['OS=="android"' , {
875 'targets': [ 877 'targets': [
876 { 878 {
877 'target_name': 'ui_jni_headers', 879 'target_name': 'ui_jni_headers',
878 'type': 'none', 880 'type': 'none',
879 'sources': [ 881 'sources': [
880 'android/java/src/org/chromium/ui/gfx/BitmapHelper.java', 882 'android/java/src/org/chromium/ui/gfx/BitmapHelper.java',
881 'android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java', 883 'android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java',
882 'android/java/src/org/chromium/ui/gfx/NativeWindow.java', 884 'android/java/src/org/chromium/ui/gfx/NativeWindow.java',
883 'android/java/src/org/chromium/ui/LocalizationUtils.java', 885 'android/java/src/org/chromium/ui/LocalizationUtils.java',
886 'android/java/src/org/chromium/ui/NativeView.java',
884 'android/java/src/org/chromium/ui/SelectFileDialog.java', 887 'android/java/src/org/chromium/ui/SelectFileDialog.java',
885 'android/java/src/org/chromium/ui/Clipboard.java', 888 'android/java/src/org/chromium/ui/Clipboard.java',
886 ], 889 ],
887 'variables': { 890 'variables': {
888 'jni_gen_package': 'ui', 891 'jni_gen_package': 'ui',
889 }, 892 },
890 'includes': [ '../build/jni_generator.gypi' ], 893 'includes': [ '../build/jni_generator.gypi' ],
891 }, 894 },
892 { 895 {
893 'target_name': 'ui_java', 896 'target_name': 'ui_java',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 'xcode_settings': { 974 'xcode_settings': {
972 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 975 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
973 }, 976 },
974 }], 977 }],
975 ], 978 ],
976 }, 979 },
977 ], 980 ],
978 }], 981 }],
979 ], 982 ],
980 } 983 }
OLDNEW
« ui/android/view_android.cc ('K') | « ui/gfx/native_widget_types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698