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

Side by Side Diff: third_party/wayland/wayland.gyp

Issue 1584653011: third_party/wayland: Add wayland_client target to wayland.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'wayland_util', 8 'target_name': 'wayland_util',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'src/src', 63 'src/src',
64 ], 64 ],
65 'direct_dependent_settings': { 65 'direct_dependent_settings': {
66 'include_dirs': [ 66 'include_dirs': [
67 'include/src', 67 'include/src',
68 'include/protocol', 68 'include/protocol',
69 'src/src', 69 'src/src',
70 ], 70 ],
71 }, 71 },
72 }, 72 },
73 {
74 'target_name': 'wayland_client',
75 'type': 'static_library',
76 'dependencies' : [
77 '../../build/linux/system.gyp:libffi',
78 'wayland_private',
79 'wayland_util',
80 ],
81 'sources': [
82 'include/protocol/wayland-client-protocol.h',
83 'protocol/wayland-protocol.c',
reveman 2016/01/19 22:23:29 Can we add a wayland_protocol target for this to m
84 'src/src/wayland-client.c',
85 ],
86 'include_dirs': [
87 'include/src',
88 'include/protocol',
89 'src/src',
90 ],
91 'direct_dependent_settings': {
92 'include_dirs': [
93 'include/src',
94 'include/protocol',
95 'src/src',
96 ],
97 },
98 },
73 ], 99 ],
74 } 100 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698