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

Side by Side Diff: chromecast/cast_system.gyp

Issue 223143003: Initial checkin of chromecast content embedder (cast_shell) and related build scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add an additional function in gl_surface_cast.cc Created 6 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
(Empty)
1 # Copyright (c) 2014 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 'variables': {
7 'conditions': [
8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 }, {
11 'pkg-config': 'pkg-config'
12 }],
13 ],
14 },
15 'targets': [
16 {
17 'target_name': 'directfb',
18 'type': 'none',
19 'conditions': [
20 ['_toolset=="target"', {
21 'direct_dependent_settings': {
22 'cflags': [
23 '<!@(<(pkg-config) --cflags directfb)',
24 ],
25 },
26 'link_settings': {
27 'ldflags': [
28 '<!@(<(pkg-config) --libs-only-L --libs-only-other directfb)',
29 ],
30 'libraries': [
31 '<!@(<(pkg-config) --libs-only-l directfb)',
32 ],
33 },
34 }],
35 ],
36 },
37 ],
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698