Chromium Code Reviews| 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 '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 Loading... | |
| 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 } |
| OLD | NEW |