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

Side by Side Diff: gpu/command_buffer_service.gypi

Issue 1087873003: Fix errors found in Mac gn component builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media/cast/sender Created 5 years, 8 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
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 'include_dirs': [ 6 'include_dirs': [
7 '..', 7 '..',
8 ], 8 ],
9 'all_dependent_settings': { 9 'all_dependent_settings': {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'command_buffer/service/vertex_array_manager.h', 135 'command_buffer/service/vertex_array_manager.h',
136 'command_buffer/service/vertex_attrib_manager.cc', 136 'command_buffer/service/vertex_attrib_manager.cc',
137 'command_buffer/service/vertex_attrib_manager.h', 137 'command_buffer/service/vertex_attrib_manager.h',
138 ], 138 ],
139 'conditions': [ 139 'conditions': [
140 ['ui_compositor_image_transport==1', { 140 ['ui_compositor_image_transport==1', {
141 'include_dirs': [ 141 'include_dirs': [
142 '../third_party/khronos', 142 '../third_party/khronos',
143 ], 143 ],
144 }], 144 }],
145 ['OS=="mac"', {
146 # Required by gles2_cmd_decoder.cc on Mac.
147 'link_settings': {
148 'libraries': [
149 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework',
150 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
Dirk Pranke 2015/04/15 15:48:01 why is the full path needed here if it's not neede
Jiang Jiang 2015/04/15 16:17:20 I'm not sure what you are referring to, from what
Dirk Pranke 2015/04/15 16:21:07 I'm talking about gpu/command_buffer/service/BUILD
Jiang Jiang 2015/04/15 16:29:26 See https://codereview.chromium.org/88813005, so b
Dirk Pranke 2015/04/15 16:34:09 Oh! I see, I was totally confused and didn't reali
151 ],
152 },
153 }],
145 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { 154 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', {
146 'sources': [ 155 'sources': [
147 'command_buffer/service/async_pixel_transfer_manager_egl.cc', 156 'command_buffer/service/async_pixel_transfer_manager_egl.cc',
148 'command_buffer/service/async_pixel_transfer_manager_egl.h', 157 'command_buffer/service/async_pixel_transfer_manager_egl.h',
149 ], 158 ],
150 }], 159 }],
151 ], 160 ],
152 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698