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

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

Issue 1484643002: Make //device pass "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « .gn ('k') | device/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
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/linux/pkg_config.gni") 6 import("//build/config/linux/pkg_config.gni")
7 import("//tools/generate_library_loader/generate_library_loader.gni") 7 import("//tools/generate_library_loader/generate_library_loader.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("system.gyp") ], 10 [ rebase_path("system.gyp") ],
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 generate_library_loader("udev1_loader") { 93 generate_library_loader("udev1_loader") {
94 name = "LibUdev1Loader" 94 name = "LibUdev1Loader"
95 output_h = "libudev1.h" 95 output_h = "libudev1.h"
96 output_cc = "libudev1_loader.cc" 96 output_cc = "libudev1_loader.cc"
97 header = "\"third_party/libudev/libudev1.h\"" 97 header = "\"third_party/libudev/libudev1.h\""
98 98
99 functions = gypi_values.libudev_functions 99 functions = gypi_values.libudev_functions
100 } 100 }
101 101
102 group("udev") { 102 group("udev") {
103 deps = [ 103 public_deps = [
104 ":udev0_loader", 104 ":udev0_loader",
105 ":udev1_loader", 105 ":udev1_loader",
106 ] 106 ]
107 } 107 }
108 108
109 group("fontconfig") { 109 group("fontconfig") {
110 if (use_system_fontconfig) { 110 if (use_system_fontconfig) {
111 public_configs = [ "//build/config/linux:fontconfig" ] 111 public_configs = [ "//build/config/linux:fontconfig" ]
112 } else { 112 } else {
113 public_deps = [ 113 public_deps = [
114 "//third_party/fontconfig", 114 "//third_party/fontconfig",
115 ] 115 ]
116 } 116 }
117 } 117 }
OLDNEW
« no previous file with comments | « .gn ('k') | device/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698