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

Side by Side Diff: content/content_gpu.gypi

Issue 2321743002: Inline content_[tests/browser/android].gypi into GN build. (Closed)
Patch Set: gen file fix 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
« no previous file with comments | « content/content_common_mojo_bindings.gyp ('k') | content/content_jni.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'dependencies': [
7 '../base/base.gyp:base',
8 '../gpu/gpu.gyp:command_buffer_traits',
9 '../gpu/gpu.gyp:gpu',
10 '../gpu/gpu.gyp:gpu_ipc_service',
11 '../media/gpu/ipc/media_ipc.gyp:media_gpu_ipc_service',
12 '../media/media.gyp:media_gpu',
13 '../skia/skia.gyp:skia',
14 '../ui/gl/gl.gyp:gl',
15 '../ui/gl/init/gl_init.gyp:gl_init',
16 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
17 ],
18 'sources': [
19 'gpu/gpu_child_thread.cc',
20 'gpu/gpu_child_thread.h',
21 'gpu/gpu_main.cc',
22 'gpu/gpu_process.cc',
23 'gpu/gpu_process.h',
24 'gpu/gpu_service_factory.cc',
25 'gpu/gpu_service_factory.h',
26 'gpu/in_process_gpu_thread.cc',
27 'gpu/in_process_gpu_thread.h',
28 'public/gpu/content_gpu_client.cc',
29 'public/gpu/content_gpu_client.h',
30 ],
31 'include_dirs': [
32 '..',
33 ],
34 'conditions': [
35 ['OS=="win"', {
36 'include_dirs': [
37 '<(DEPTH)/third_party/khronos',
38 # ANGLE libs picked up from ui/gl
39 '<(angle_path)/src',
40 '<(DEPTH)/third_party/wtl/include',
41 ],
42 'link_settings': {
43 'libraries': [
44 '-lsetupapi.lib',
45 ],
46 },
47 }],
48 ['target_arch!="arm" and chromeos == 1', {
49 'include_dirs': [
50 '<(DEPTH)/third_party/libva',
51 ],
52 }],
53 ['OS=="android"', {
54 'dependencies': [
55 '<(DEPTH)/media/media.gyp:player_android',
56 ],
57 }],
58 ],
59 }
OLDNEW
« no previous file with comments | « content/content_common_mojo_bindings.gyp ('k') | content/content_jni.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698