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

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

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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 | « third_party/mockito/mockito.gyp ('k') | third_party/modp_b64/modp_b64_nacl.gyp » ('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 (c) 2009 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': 'modp_b64',
9 'type': 'static_library',
10 'toolsets': ['host', 'target'],
11 'sources': [
12 'modp_b64.cc',
13 'modp_b64.h',
14 'modp_b64_data.h',
15 ],
16 'include_dirs': [
17 '../..',
18 ],
19 },
20 ],
21 'conditions': [
22 ['OS == "win" and target_arch=="ia32"', {
23 # Even if we are building the browser for Win32, we need a few modules
24 # to be built for Win64, and this is a prerequsite.
25 'targets': [
26 {
27 'target_name': 'modp_b64_win64',
28 'type': 'static_library',
29 # We can't use dynamic_annotations target for win64 build since it is
30 # a 32-bit library.
31 'include_dirs': [
32 '../..',
33 ],
34 'sources': [
35 'modp_b64.cc',
36 'modp_b64.h',
37 'modp_b64_data.h',
38 ],
39 'configurations': {
40 'Common_Base': {
41 'msvs_target_platform': 'x64',
42 },
43 },
44 },
45 ],
46 }],
47 ],
48 }
OLDNEW
« no previous file with comments | « third_party/mockito/mockito.gyp ('k') | third_party/modp_b64/modp_b64_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698