| 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 '..', |
| 15 '<(SHARED_INTERMEDIATE_DIR)/third_party/WebKit', |
| 16 ] |
| 14 }, | 17 }, |
| 15 'includes': [ 'blink_headers.gypi' ], | 18 'includes': [ 'blink_headers.gypi' ], |
| 16 'sources': ['<@(blink_public_sources)'], | 19 'sources': ['<@(blink_public_sources)'], |
| 17 }, | 20 }, |
| 18 ], | 21 ], |
| 19 'conditions': [ | 22 'conditions': [ |
| 20 ['OS=="android"', { | 23 ['OS=="android"', { |
| 21 'targets': [ | 24 'targets': [ |
| 22 { | 25 { |
| 23 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar | 26 # gn version: //third_party/WebKit/public:blink_headers_java
_enums_srcjar |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'variables': { | 61 'variables': { |
| 59 'java_in_dir': '../../../build/android/empty', | 62 'java_in_dir': '../../../build/android/empty', |
| 60 }, | 63 }, |
| 61 'includes': [ '../../../build/java.gypi' ], | 64 'includes': [ '../../../build/java.gypi' ], |
| 62 }, | 65 }, |
| 63 ], | 66 ], |
| 64 }], | 67 }], |
| 65 ], | 68 ], |
| 66 } | 69 } |
| 67 | 70 |
| OLD | NEW |