Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } | |
| OLD | NEW |