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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 # Depend on this target to use public blink API headers for things | 7 # Depend on this target to use public blink API headers for things |
8 # like enums and public structures without actually linking against
any Blink | 8 # like enums and public structures without actually linking against
any Blink |
9 # libraries. | 9 # libraries. |
10 'target_name': 'blink_headers', | 10 'target_name': 'blink_headers', |
11 'type': 'none', | 11 'type': 'none', |
12 'direct_dependent_settings': { | 12 'direct_dependent_settings': { |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '..', | 14 '..', |
15 '<(SHARED_INTERMEDIATE_DIR)/third_party/WebKit', | 15 '<(SHARED_INTERMEDIATE_DIR)/third_party/WebKit', |
16 ], | 16 ], |
17 }, | 17 }, |
18 'includes': [ 'blink_headers.gypi' ], | 18 'includes': [ 'blink_headers.gypi' ], |
19 'sources': ['<@(blink_public_sources)'], | 19 'sources': ['<@(blink_public_sources)'], |
20 }, | 20 }, |
21 ], | 21 ], |
22 'conditions': [ | 22 'conditions': [ |
23 ['OS=="android"', { | 23 ['OS=="android"', { |
24 'targets': [ | 24 'targets': [ |
25 { | 25 { |
26 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar | 26 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar |
27 'target_name': 'web_input_event_java', | 27 'target_name': 'web_input_event_java', |
28 'type': 'none', | 28 'type': 'none', |
29 'variables': { | 29 'variables': { |
30 'source_file': 'web/WebInputEvent.h', | 30 'source_file': 'platform/WebInputEvent.h', |
31 }, | 31 }, |
32 'includes': [ '../../../build/android/java_cpp_enum.gypi' ], | 32 'includes': [ '../../../build/android/java_cpp_enum.gypi' ], |
33 }, | 33 }, |
34 { | 34 { |
35 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar | 35 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar |
36 'target_name': 'web_text_input_type', | 36 'target_name': 'web_text_input_type', |
37 'type': 'none', | 37 'type': 'none', |
38 'variables': { | 38 'variables': { |
39 'source_file': 'web/WebTextInputType.h', | 39 'source_file': 'web/WebTextInputType.h', |
40 }, | 40 }, |
(...skipping 20 matching lines...) Expand all Loading... |
61 'variables': { | 61 'variables': { |
62 'java_in_dir': '../../../build/android/empty', | 62 'java_in_dir': '../../../build/android/empty', |
63 }, | 63 }, |
64 'includes': [ '../../../build/java.gypi' ], | 64 'includes': [ '../../../build/java.gypi' ], |
65 }, | 65 }, |
66 ], | 66 ], |
67 }], | 67 }], |
68 ], | 68 ], |
69 } | 69 } |
70 | 70 |
OLD | NEW |