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

Side by Side Diff: build/common.gypi

Issue 1486623003: Re-land: chrome: Add support for use_glib=true to wayland server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: align gyp and GN 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 | « no previous file | build/config/ui.gni » ('j') | build/config/ui.gni » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 }], 752 }],
753 753
754 # Flags to use glib. 754 # Flags to use glib.
755 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', { 755 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
756 'use_glib%': 0, 756 'use_glib%': 0,
757 }, { 757 }, {
758 'use_glib%': 1, 758 'use_glib%': 1,
759 }], 759 }],
760 760
761 # Flags to use Wayland server support. 761 # Flags to use Wayland server support.
762 ['chromeos==1 and use_ozone==1', { 762 ['chromeos==1', {
reveman 2015/12/01 16:53:02 Fyi, here is where enable_wayland_server is set to
763 'enable_wayland_server%': 1, 763 'enable_wayland_server%': 1,
764 }, { 764 }, {
765 'enable_wayland_server%': 0, 765 'enable_wayland_server%': 0,
766 }], 766 }],
767 767
768 # Flags to use pango and cairo. 768 # Flags to use pango and cairo.
769 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', { 769 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
770 'use_pango%': 0, 770 'use_pango%': 0,
771 'use_cairo%': 0, 771 'use_cairo%': 0,
772 }, { 772 }, {
(...skipping 5614 matching lines...) Expand 10 before | Expand all | Expand 10 after
6387 # settings in target dicts. SYMROOT is a special case, because many other 6387 # settings in target dicts. SYMROOT is a special case, because many other
6388 # Xcode variables depend on it, including variables such as 6388 # Xcode variables depend on it, including variables such as
6389 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6389 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6390 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6390 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6391 # files to appear (when present) in the UI as actual files and not red 6391 # files to appear (when present) in the UI as actual files and not red
6392 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6392 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6393 # and therefore SYMROOT, needs to be set at the project level. 6393 # and therefore SYMROOT, needs to be set at the project level.
6394 'SYMROOT': '<(DEPTH)/xcodebuild', 6394 'SYMROOT': '<(DEPTH)/xcodebuild',
6395 }, 6395 },
6396 } 6396 }
OLDNEW
« no previous file with comments | « no previous file | build/config/ui.gni » ('j') | build/config/ui.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698