OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # GN version: //ui/platform_window/android:android_window | 10 # GN version: //ui/platform_window/android:android_window |
11 'target_name': 'android_window', | 11 'target_name': 'android_window', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../../base/base.gyp:base', | 14 '../../../base/base.gyp:base', |
15 '../../../skia/skia.gyp:skia', | 15 '../../../skia/skia.gyp:skia', |
16 '../../events/events.gyp:events', | 16 '../../events/events.gyp:events', |
17 '../../events/events.gyp:events_base', | 17 '../../events/events.gyp:events_base', |
18 '../../gfx/gfx.gyp:gfx', | 18 '../../gfx/gfx.gyp:gfx', |
19 '../../gfx/gfx.gyp:gfx_geometry', | 19 '../../gfx/gfx.gyp:gfx_geometry', |
| 20 '../../latency_info/latency_info.gyp:latency_info', |
20 '../platform_window.gyp:platform_window', | 21 '../platform_window.gyp:platform_window', |
21 'android_window_jni_headers', | 22 'android_window_jni_headers', |
22 'android_window_java', | 23 'android_window_java', |
23 ], | 24 ], |
24 'defines': [ 'ANDROID_WINDOW_IMPLEMENTATION' ], | 25 'defines': [ 'ANDROID_WINDOW_IMPLEMENTATION' ], |
25 'sources': [ | 26 'sources': [ |
26 'android_window_export.h', | 27 'android_window_export.h', |
27 'platform_ime_controller_android.cc', | 28 'platform_ime_controller_android.cc', |
28 'platform_ime_controller_android.h', | 29 'platform_ime_controller_android.h', |
29 'platform_window_android.cc', | 30 'platform_window_android.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
49 'type': 'none', | 50 'type': 'none', |
50 'variables': { | 51 'variables': { |
51 'java_in_dir': '../../../ui/platform_window/android/java', | 52 'java_in_dir': '../../../ui/platform_window/android/java', |
52 }, | 53 }, |
53 'dependencies': [ | 54 'dependencies': [ |
54 '../../../base/base.gyp:base_java', | 55 '../../../base/base.gyp:base_java', |
55 ], | 56 ], |
56 'includes': [ '../../../build/java.gypi' ], | 57 'includes': [ '../../../build/java.gypi' ], |
57 }], | 58 }], |
58 } | 59 } |
OLD | NEW |