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

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

Issue 2456053004: Validate origins when generating subdomain tokens (Closed)
Patch Set: Fix android_cronet build error Created 4 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 | « BUILD.gn ('k') | tools/origin_trials/generate_token.py » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 7
8 # CrOS doesn't install GTK, gconf or any gnome packages. 8 # CrOS doesn't install GTK, gconf or any gnome packages.
9 assert(!is_chromeos && use_gconf) 9 assert(!is_chromeos && use_gconf)
10 10
11 # These packages should _only_ be expected when building for a target.
12 # If these extra checks are not run, gconf is required when building host
13 # tools for a CrOS build.
14 assert(current_toolchain == default_toolchain)
15
16 pkg_config("gconf") { 11 pkg_config("gconf") {
17 packages = [ "gconf-2.0" ] 12 packages = [ "gconf-2.0" ]
18 defines = [ "USE_GCONF" ] 13 defines = [ "USE_GCONF" ]
19 } 14 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | tools/origin_trials/generate_token.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698