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

Side by Side Diff: components/nacl_common.gyp

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
« no previous file with comments | « components/nacl/loader/nacl_validation_query_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
Jói 2013/06/27 14:18:38 Not sure we still use the (c) but I don't think it
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 'targets': [ 6 'targets': [
7 { 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 {
8 'target_name': 'nacl_switches', 24 'target_name': 'nacl_switches',
9 'type': 'static_library', 25 'type': 'static_library',
10 'sources': [ 26 'sources': [
11 'nacl/common/nacl_switches.cc', 27 'nacl/common/nacl_switches.cc',
12 'nacl/common/nacl_switches.h', 28 'nacl/common/nacl_switches.h',
13 ], 29 ],
14 'include_dirs': [ 30 'include_dirs': [
15 '..', 31 '..',
16 ], 32 ],
17 }, 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 },
18 ], 45 ],
19 'conditions': [ 46 'conditions': [
20 ['OS=="win" and target_arch=="ia32"', { 47 ['OS=="win" and target_arch=="ia32"', {
21 'targets': [ 48 'targets': [
22 { 49 {
23 'target_name': 'nacl_switches_win64', 50 'target_name': 'nacl_switches_win64',
24 'type': 'static_library', 51 'type': 'static_library',
25 'sources': [ 52 'sources': [
26 'nacl/common/nacl_switches.cc', 53 'nacl/common/nacl_switches.cc',
27 'nacl/common/nacl_switches.h', 54 'nacl/common/nacl_switches.h',
28 ], 55 ],
29 'include_dirs': [ 56 'include_dirs': [
30 '..', 57 '..',
31 ], 58 ],
32 'configurations': { 59 'configurations': {
33 'Common_Base': { 60 'Common_Base': {
34 'msvs_target_platform': 'x64', 61 'msvs_target_platform': 'x64',
35 }, 62 },
36 }, 63 },
37 }, 64 },
38 ], 65 ],
39 }], 66 },],
40 ], 67 ],
41 } 68 }
OLDNEW
« no previous file with comments | « components/nacl/loader/nacl_validation_query_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698