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

Side by Side Diff: build/common.gypi

Issue 7467007: Adding Wayland support for ui/gfx (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Simplified gl Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/gfx/canvas_skia_linux.cc » ('j') | ui/gfx/surface/surface.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 ['exclude', '(^|/)(cocoa|mac)/'], 932 ['exclude', '(^|/)(cocoa|mac)/'],
933 ['exclude', '\\.mm?$' ] ], 933 ['exclude', '\\.mm?$' ] ],
934 }], 934 }],
935 ['toolkit_uses_gtk!=1', { 935 ['toolkit_uses_gtk!=1', {
936 'sources/': [ 936 'sources/': [
937 ['exclude', '_(chromeos|gtk|x|x11|xdg)(_unittest)?\\.(h|cc)$'], 937 ['exclude', '_(chromeos|gtk|x|x11|xdg)(_unittest)?\\.(h|cc)$'],
938 ['exclude', '(^|/)gtk/'], 938 ['exclude', '(^|/)gtk/'],
939 ['exclude', '(^|/)(gtk|x11)_[^/]*\\.(h|cc)$'], 939 ['exclude', '(^|/)(gtk|x11)_[^/]*\\.(h|cc)$'],
940 ], 940 ],
941 }], 941 }],
942 ['use_wayland!=1', {
943 'sources/': [
944 ['exclude', '_(wayland)(_unittest)?\\.(h|cc)$'],
945 ['exclude', '(^|/)wayland/'],
946 ['exclude', '(^|/)(wayland)_[^/]*\\.(h|cc)$'],
947 ],
948 }],
942 ['OS!="linux"', { 949 ['OS!="linux"', {
943 'sources/': [ 950 'sources/': [
944 ['exclude', '_linux(_unittest)?\\.(h|cc)$'], 951 ['exclude', '_linux(_unittest)?\\.(h|cc)$'],
945 ['exclude', '(^|/)linux/'], 952 ['exclude', '(^|/)linux/'],
946 ], 953 ],
947 }], 954 }],
948 # We use "POSIX" to refer to all non-Windows operating systems. 955 # We use "POSIX" to refer to all non-Windows operating systems.
949 ['OS=="win"', { 956 ['OS=="win"', {
950 'sources/': [ ['exclude', '_posix\\.(h|cc)$'] ], 957 'sources/': [ ['exclude', '_posix\\.(h|cc)$'] ],
951 # turn on warnings for signed/unsigned mismatch on chromium code. 958 # turn on warnings for signed/unsigned mismatch on chromium code.
(...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
1888 # settings in target dicts. SYMROOT is a special case, because many other 1895 # settings in target dicts. SYMROOT is a special case, because many other
1889 # Xcode variables depend on it, including variables such as 1896 # Xcode variables depend on it, including variables such as
1890 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 1897 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
1891 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 1898 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
1892 # files to appear (when present) in the UI as actual files and not red 1899 # files to appear (when present) in the UI as actual files and not red
1893 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 1900 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
1894 # and therefore SYMROOT, needs to be set at the project level. 1901 # and therefore SYMROOT, needs to be set at the project level.
1895 'SYMROOT': '<(DEPTH)/xcodebuild', 1902 'SYMROOT': '<(DEPTH)/xcodebuild',
1896 }, 1903 },
1897 } 1904 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/canvas_skia_linux.cc » ('j') | ui/gfx/surface/surface.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698