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

Side by Side Diff: third_party/mesa/mesa.gyp

Issue 951983002: Reland "Enable libc++ on Android" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang+mesa Created 5 years, 7 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 | « net/base/net_util_linux.cc ('k') | third_party/re2/patches/re2-libcxx.patch » ('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) 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 { 5 {
6 'variables': { 6 'variables': {
7 'generated_src_dir': 'src/chromium_gensrc', 7 'generated_src_dir': 'src/chromium_gensrc',
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 28 matching lines...) Expand all
39 "GLX_INDIRECT_RENDERING", 39 "GLX_INDIRECT_RENDERING",
40 "GLX_DIRECT_RENDERING", 40 "GLX_DIRECT_RENDERING",
41 "USE_EXTERNAL_DXTN_LIB=1", 41 "USE_EXTERNAL_DXTN_LIB=1",
42 "IN_DRI_DRIVER", 42 "IN_DRI_DRIVER",
43 "HAVE_ALIAS", 43 "HAVE_ALIAS",
44 "HAVE_MINCORE", 44 "HAVE_MINCORE",
45 "HAVE_LIBUDEV", 45 "HAVE_LIBUDEV",
46 "_GLAPI_NO_EXPORTS", 46 "_GLAPI_NO_EXPORTS",
47 ], 47 ],
48 'conditions': [ 48 'conditions': [
49 ['OS=="android"', { 49 ['OS=="android" or OS=="linux"', {
50 'defines': [
51 '__GLIBC__',
52 '_GNU_SOURCE',
53 ],
54 }],
55 ['OS=="linux"', {
56 'defines': [ 50 'defines': [
57 '_GNU_SOURCE', 51 '_GNU_SOURCE',
58 ], 52 ],
59 }], 53 }],
60 ['os_posix == 1', { 54 ['os_posix == 1', {
61 'defines': [ 55 'defines': [
62 'HAVE_DLOPEN', 56 'HAVE_DLOPEN',
63 'HAVE_PTHREAD=1', 57 'HAVE_PTHREAD=1',
64 'HAVE_UNISTD_H=1', 58 'HAVE_UNISTD_H=1',
65 ], 59 ],
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 '<(PRODUCT_DIR)/libosmesa.so', 735 '<(PRODUCT_DIR)/libosmesa.so',
742 '<(SHARED_LIB_DIR)/libosmesa.so', 736 '<(SHARED_LIB_DIR)/libosmesa.so',
743 ], 737 ],
744 }, 738 },
745 ], 739 ],
746 }, 740 },
747 ], 741 ],
748 }], 742 }],
749 ], 743 ],
750 } 744 }
OLDNEW
« no previous file with comments | « net/base/net_util_linux.cc ('k') | third_party/re2/patches/re2-libcxx.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698