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

Side by Side Diff: build/linux/unbundle/re2.gyp

Issue 14203006: Extract use_system_foo logic out of gyp files, patch 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2013 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 {
6 'targets': [
7 {
8 'target_name': 're2',
9 'type': 'none',
10 'variables': {
11 'headers_root_path': '.',
12 'header_filenames': [
13 're2/filtered_re2.h',
14 're2/re2.h',
15 're2/set.h',
16 're2/stringpiece.h',
17 're2/variadic_function.h',
18 ],
19 'shim_generator_additional_args': [
20 # Chromium copy of re2 is patched to rename POSIX to POSIX_SYNTAX
21 # because of collision issues that break the build.
22 # Upstream refuses to make changes:
23 # http://code.google.com/p/re2/issues/detail?id=73 .
24 '--define', 'POSIX=POSIX_SYNTAX',
25 ],
26 },
27 'includes': [
28 '../../build/shim_headers.gypi',
29 ],
30 'link_settings': {
31 'libraries': [
32 '-lre2',
33 ],
34 },
35 }
36 ],
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698