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

Side by Side Diff: build/linux/system.gyp

Issue 223143004: Add chromecast_build gyp variable and add rules when the variable is set to 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add directfb as a new dependency in install-build-deps.sh for building chromecast 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
« build/install-build-deps.sh ('K') | « build/install-build-deps.sh ('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 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the 10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 'ldflags': [ 1042 'ldflags': [
1043 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', 1043 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)',
1044 ], 1044 ],
1045 'libraries': [ 1045 'libraries': [
1046 '<!@(<(pkg-config) --libs-only-l libudev)', 1046 '<!@(<(pkg-config) --libs-only-l libudev)',
1047 ], 1047 ],
1048 }, 1048 },
1049 }], 1049 }],
1050 ], 1050 ],
1051 }, 1051 },
1052 {
1053 'target_name': 'directfb',
1054 'type': 'none',
1055 'conditions': [
1056 ['_toolset=="target"', {
1057 'direct_dependent_settings': {
1058 'cflags': [
1059 '<!@(<(pkg-config) --cflags directfb)',
1060 ],
1061 },
1062 'link_settings': {
1063 'ldflags': [
1064 '<!@(<(pkg-config) --libs-only-L --libs-only-other directfb)',
1065 ],
1066 'libraries': [
1067 '<!@(<(pkg-config) --libs-only-l directfb)',
1068 ],
1069 },
1070 }],
1071 ],
1072 },
1052 ], 1073 ],
1053 } 1074 }
OLDNEW
« build/install-build-deps.sh ('K') | « build/install-build-deps.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698