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: 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: Adding UI_EXPORT 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 'includes': [ 876 'includes': [
875 'ui_unittests.gypi', 877 'ui_unittests.gypi',
876 ]}, 878 ]},
877 ], 879 ],
878 ['OS=="android"' , { 880 ['OS=="android"' , {
879 'targets': [ 881 'targets': [
880 { 882 {
881 'target_name': 'ui_jni_headers', 883 'target_name': 'ui_jni_headers',
882 'type': 'none', 884 'type': 'none',
883 'sources': [ 885 'sources': [
886 'android/java/src/org/chromium/ui/Clipboard.java',
884 'android/java/src/org/chromium/ui/gfx/BitmapHelper.java', 887 'android/java/src/org/chromium/ui/gfx/BitmapHelper.java',
885 'android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java', 888 'android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java',
886 'android/java/src/org/chromium/ui/gfx/NativeWindow.java', 889 'android/java/src/org/chromium/ui/gfx/WindowAndroid.java',
887 'android/java/src/org/chromium/ui/LocalizationUtils.java', 890 'android/java/src/org/chromium/ui/LocalizationUtils.java',
888 'android/java/src/org/chromium/ui/SelectFileDialog.java', 891 'android/java/src/org/chromium/ui/SelectFileDialog.java',
889 'android/java/src/org/chromium/ui/Clipboard.java', 892 'android/java/src/org/chromium/ui/ViewAndroid.java',
890 ], 893 ],
891 'variables': { 894 'variables': {
892 'jni_gen_package': 'ui', 895 'jni_gen_package': 'ui',
893 }, 896 },
894 'includes': [ '../build/jni_generator.gypi' ], 897 'includes': [ '../build/jni_generator.gypi' ],
895 }, 898 },
896 { 899 {
897 'target_name': 'ui_java', 900 'target_name': 'ui_java',
898 'type': 'none', 901 'type': 'none',
899 'variables': { 902 'variables': {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 'xcode_settings': { 978 'xcode_settings': {
976 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 979 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
977 }, 980 },
978 }], 981 }],
979 ], 982 ],
980 }, 983 },
981 ], 984 ],
982 }], 985 }],
983 ], 986 ],
984 } 987 }
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