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

Side by Side Diff: build/config/ui.gni

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: 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 | « build/config/sysroot.gni ('k') | build/copy_test_data_ios.py » ('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 2014 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 # This file contains UI-related build flags. It should theoretically be in the
6 # src/ui directory and only things that depend on the ui module should get the
7 # definitions.
8 #
9 # However, today we have many "bad" dependencies on some of these flags from,
10 # e.g. base, so they need to be global.
11 #
12 # See also build/config/features.gni
13
14 declare_args() {
15 # Indicates if Ozone is enabled. Ozone is a low-level library layer for Linux
16 # that does not require X11.
17 use_ozone = false
18 }
19
20 # Additional dependent variables -----------------------------------------------
21 #
22 # These variables depend on other variables and can't be set externally.
23
24 # Indicates if the UI toolkit depends on X11.
25 use_x11 = is_linux && !use_ozone
26
27 use_ozone_evdev = use_ozone
OLDNEW
« no previous file with comments | « build/config/sysroot.gni ('k') | build/copy_test_data_ios.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698