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

Side by Side Diff: third_party/libXNVCtrl/BUILD.gn

Issue 1867983002: Flip Linux ChromeOS trybot to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 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
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This warning disable must be appended to the command line after the general
6 # warnings setup, so must be in a config.
7 config("libXNVCtrl_config") {
8 # This will build under most configurations with this warning enabled, but
9 # some older system headers are missing a "const" on the third parameter of
10 # XextAddDisplay which will cause a failure.
11 cflags = [
12 "-Wno-incompatible-pointer-types-discards-qualifiers",
13 ]
14 }
15
5 source_set("libXNVCtrl") { 16 source_set("libXNVCtrl") {
6 sources = [ 17 sources = [
7 "NVCtrl.c", 18 "NVCtrl.c",
8 "NVCtrl.h", 19 "NVCtrl.h",
9 "NVCtrlLib.h", 20 "NVCtrlLib.h",
10 "nv_control.h", 21 "nv_control.h",
11 ] 22 ]
23
24 configs += [
25 ":libXNVCtrl_config",
26 "//build/config/linux:x11",
27 ]
12 } 28 }
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698