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

Side by Side Diff: cc/BUILD.gn

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from jdduke@ and aelias@ Created 6 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 component("cc") { 5 component("cc") {
6 sources = [ 6 sources = [
7 "animation/animation.cc", 7 "animation/animation.cc",
8 "animation/animation.h", 8 "animation/animation.h",
9 "animation/animation_curve.cc", 9 "animation/animation_curve.cc",
10 "animation/animation_curve.h", 10 "animation/animation_curve.h",
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 "//gpu/command_buffer/common:gles2_utils", 835 "//gpu/command_buffer/common:gles2_utils",
836 "//media", 836 "//media",
837 "//skia", 837 "//skia",
838 "//testing/gmock", 838 "//testing/gmock",
839 "//testing/gtest", 839 "//testing/gtest",
840 "//testing/perf", 840 "//testing/perf",
841 "//ui/gfx", 841 "//ui/gfx",
842 "//ui/gfx/geometry", 842 "//ui/gfx/geometry",
843 ] 843 ]
844 } 844 }
845
846 if (is_android) {
aelias_OOO_until_Jul13 2014/11/12 19:30:56 Sorry, I realize I'm contradicting my own code rev
yukawa 2014/12/05 07:42:19 Done.
847 # GYP: //cc.gyp:cc_java
848 android_library("cc_java") {
849 srcjar_deps = [
850 ":cc_android_java_enums_srcjar",
851 ]
852
853 DEPRECATED_java_in_dir = "android/java/src"
854 }
855
856 # GYP: //cc.gyp:cc_java_selection_bound_type
857 java_cpp_enum("cc_android_java_enums_srcjar") {
858 sources = [
859 "input/selection_bound_type.h",
860 ]
861 outputs = [
862 "org/chromium/cc/input/SelectionBoundType.java",
863 ]
864 }
865 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698