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

Side by Side Diff: device/nfc/nfc.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 months 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
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 'android_support_v13_target%':
9 '../../third_party/android_tools/android_tools.gyp:android_support_v13_javal ib',
10 },
11 'targets': [
12 {
13 'target_name': 'device_nfc_mojo_bindings',
14 'type': 'static_library',
15 'includes': [
16 '../../mojo/mojom_bindings_generator.gypi',
17 ],
18 'sources': [
19 'nfc.mojom',
20 ],
21 'variables': {
22 'use_new_wrapper_types': 'false',
23 },
24 },
25 {
26 'target_name': 'device_nfc_mojo_bindings_for_blink',
27 'type': 'static_library',
28 'variables': {
29 'for_blink': 'true',
30 'use_new_wrapper_types': 'false',
31 },
32 'includes': [
33 '../../mojo/mojom_bindings_generator.gypi',
34 ],
35 'sources': [
36 'nfc.mojom',
37 ],
38 },
39 ],
40 'conditions': [
41 ['OS == "android"', {
42 'targets': [
43 {
44 'target_name': 'device_nfc_java',
45 'type': 'none',
46 'dependencies': [
47 '<(android_support_v13_target)',
48 '../../base/base.gyp:base',
49 '../../mojo/mojo_public.gyp:mojo_bindings_java',
50 'device_nfc_mojo_bindings',
51 ],
52 'variables': {
53 'java_in_dir': '../../device/nfc/android/java',
54 },
55 'includes': [ '../../build/java.gypi' ],
56 },
57 ],
58 }, { # OS != "android"
59 }],
60 ],
61 }
OLDNEW
« no previous file with comments | « device/media_transfer_protocol/media_transfer_protocol.gyp ('k') | device/power_save_blocker/power_save_blocker.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698