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

Side by Side Diff: build/config/linux/BUILD.gn

Issue 2101243005: Add a snapshot of flutter/engine/src/build to our sdk (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add README.dart Created 4 years, 5 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 | « build/config/ios/rules.gni ('k') | build/config/linux/gtk/BUILD.gn » ('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) 2013 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 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/features.gni")
7 import("//build/config/sysroot.gni")
8 import("//build/config/ui.gni")
9
10 config("sdk") {
11 if (sysroot != "") {
12 cflags = [ "--sysroot=" + sysroot ]
13 ldflags = [ "--sysroot=" + sysroot ]
14
15 # Need to get some linker flags out of the sysroot.
16 ldflags += [ exec_script("sysroot_ld_path.py",
17 [
18 rebase_path("//build/linux/sysroot_ld_path.sh",
19 root_build_dir),
20 sysroot,
21 ],
22 "value") ]
23 }
24 }
25
26 config("fontconfig") {
27 libs = [ "fontconfig" ]
28 }
29
30 pkg_config("freetype2") {
31 packages = [ "freetype2" ]
32 }
33
34 config("x11") {
35 libs = [
36 "X11",
37 "Xcomposite",
38 "Xcursor",
39 "Xdamage",
40 "Xext",
41 "Xfixes",
42 "Xi",
43 "Xrender",
44 "Xtst",
45 ]
46 }
47
48 config("xrandr") {
49 libs = [ "Xrandr" ]
50 }
51
52 config("xinerama") {
53 libs = [ "Xinerama" ]
54 }
55
56 config("xcomposite") {
57 libs = [ "Xcomposite" ]
58 }
59
60 config("xext") {
61 libs = [ "Xext" ]
62 }
OLDNEW
« no previous file with comments | « build/config/ios/rules.gni ('k') | build/config/linux/gtk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698