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

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

Issue 1423563007: third_party: Add wayland_drm_protocol target to third_party/mesa. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@libffi-arm
Patch Set: fix copy-n-paste mistake Created 5 years, 1 month 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 | « third_party/mesa/README.chromium ('k') | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'generated_src_dir': 'src/chromium_gensrc', 7 'generated_src_dir': 'src/chromium_gensrc',
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 'action': [ 755 'action': [
756 'cp', 756 'cp',
757 '<(PRODUCT_DIR)/libosmesa.so', 757 '<(PRODUCT_DIR)/libosmesa.so',
758 '<(SHARED_LIB_DIR)/libosmesa.so', 758 '<(SHARED_LIB_DIR)/libosmesa.so',
759 ], 759 ],
760 }, 760 },
761 ], 761 ],
762 }, 762 },
763 ], 763 ],
764 }], 764 }],
765 [ 'OS=="linux"', {
766 'targets': [
767 {
768 'target_name': 'wayland_drm_protocol',
769 'type': 'static_library',
770 'dependencies' : [
771 '../wayland/wayland.gyp:wayland_util',
772 ],
773 'include_dirs': [
774 '<(generated_src_dir)/egl/wayland/wayland-drm',
775 ],
776 'sources': [
777 '<(generated_src_dir)/egl/wayland/wayland-drm/wayland-drm-client-pro tocol.h',
778 '<(generated_src_dir)/egl/wayland/wayland-drm/wayland-drm-protocol.c ',
779 '<(generated_src_dir)/egl/wayland/wayland-drm/wayland-drm-server-pro tocol.h',
780 ],
781 'direct_dependent_settings': {
782 'include_dirs': [
783 '<(generated_src_dir)/egl/wayland/wayland-drm',
784 ],
785 },
786 },
787 ],
788 }],
765 ], 789 ],
766 } 790 }
OLDNEW
« no previous file with comments | « third_party/mesa/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698