forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add system libXNVCtrl library support in linux unbundle
originally developed here: https://github.com/pld-linux/chromium-browser/commits/ea209591465e59e433cbb231270088a3d45658a2/system-libxnvctrl.patch reviewed by phajdan.jr in private mail exchange R=phajdan.jr@chromium.org BUG= Review URL: https://codereview.chromium.org/120533002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250495 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
elan.ruusamae@gmail.com
committed
Feb 11, 2014
1 parent
6682a85
commit 94a14b1
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'libXNVCtrl', | ||
'type': 'none', | ||
'variables': { | ||
'headers_root_path': '.', | ||
'header_filenames': [ | ||
'NVCtrlLib.h', | ||
'NVCtrl.h', | ||
], | ||
}, | ||
'includes': [ | ||
'../../build/shim_headers.gypi', | ||
], | ||
'direct_dependent_settings': { | ||
'cflags': [ | ||
'<!@(pkg-config --cflags libXNVCtrl)', | ||
], | ||
}, | ||
'link_settings': { | ||
'ldflags': [ | ||
'<!@(pkg-config --libs-only-L --libs-only-other libXNVCtrl)', | ||
], | ||
'libraries': [ | ||
'<!@(pkg-config --libs-only-l libXNVCtrl)', | ||
], | ||
}, | ||
} | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters