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

Side by Side Diff: components/nacl_common.gypi

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make ios happy Created 7 years, 6 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
OLDNEW
(Empty)
1 # Copyright (c) 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': 'nacl_common',
9 'type': 'static_library',
10 'dependencies': [
11 '../base/base.gyp:base',
12 ],
13 'sources': [
14 'nacl/common/nacl_messages.cc',
15 'nacl/common/nacl_messages.h',
16 'nacl/common/nacl_types.cc',
17 'nacl/common/nacl_types.h',
18 ],
19 'include_dirs': [
20 '..',
21 ],
22 },
23 {
24 'target_name': 'nacl_switches',
25 'type': 'static_library',
26 'sources': [
27 'nacl/common/nacl_switches.cc',
28 'nacl/common/nacl_switches.h',
29 ],
30 'include_dirs': [
31 '..',
32 ],
33 },
34 {
35 'target_name': 'nacl_cmd_line',
36 'type': 'static_library',
37 'sources': [
38 'nacl/common/nacl_cmd_line.cc',
39 'nacl/common/nacl_cmd_line.h',
40 ],
41 'include_dirs': [
42 '..',
43 ],
44 },
45 ],
46 'conditions': [
47 ['OS=="win" and target_arch=="ia32"', {
48 'targets': [
49 {
50 'target_name': 'nacl_switches_win64',
51 'type': 'static_library',
52 'sources': [
53 'nacl/common/nacl_switches.cc',
54 'nacl/common/nacl_switches.h',
55 ],
56 'include_dirs': [
57 '..',
58 ],
59 'configurations': {
60 'Common_Base': {
61 'msvs_target_platform': 'x64',
62 },
63 },
64 },
65 ],
66 },],
67 ],
68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698