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

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

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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/linux/unbundle/protobuf.gyp ('k') | build/linux/unbundle/remove_bundled_libraries.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 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
« no previous file with comments | « build/linux/unbundle/protobuf.gyp ('k') | build/linux/unbundle/remove_bundled_libraries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698