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

Side by Side Diff: cc/cc.gyp

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 (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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 'surfaces/surface_manager.h', 547 'surfaces/surface_manager.h',
548 'surfaces/surface_resource_holder.cc', 548 'surfaces/surface_resource_holder.cc',
549 'surfaces/surface_resource_holder.h', 549 'surfaces/surface_resource_holder.h',
550 'surfaces/surfaces_export.h', 550 'surfaces/surfaces_export.h',
551 ], 551 ],
552 'includes': [ 552 'includes': [
553 '../build/android/increase_size_for_speed.gypi', 553 '../build/android/increase_size_for_speed.gypi',
554 ], 554 ],
555 }, 555 },
556 ], 556 ],
557 'conditions': [
558 ['OS=="android"', {
559 'targets': [
560 {
561 # GN: //cc:cc_android_java_enums_srcjar
562 'target_name': 'cc_java_selection_bound_type',
563 'type': 'none',
564 'variables': {
565 'source_file': 'input/selection_bound_type.h',
566 },
567 'includes': [ '../build/android/java_cpp_enum.gypi' ],
568 },
569 {
570 # GN: //cc:cc_java
571 'target_name': 'cc_java',
572 'type': 'none',
573 'variables': {
574 'java_in_dir': '../cc/android/java',
575 },
576 'dependencies': [
577 'cc_java_selection_bound_type',
578 ],
579 'includes': [ '../build/java.gypi' ],
580 },
581 ],
582 }],
583 ],
557 } 584 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698