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

Side by Side Diff: components/nacl_common.gyp

Issue 18098009: Move nacl_cmd_line to components/nacl/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
« chrome/nacl.gypi ('K') | « components/nacl/common/nacl_cmd_line.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 2013 The Chromium Authors. All rights reserved.
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_switches', 8 'target_name': 'nacl_switches',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
11 'nacl/common/nacl_switches.cc', 11 'nacl/common/nacl_switches.cc',
12 'nacl/common/nacl_switches.h', 12 'nacl/common/nacl_switches.h',
13 ], 13 ],
14 'include_dirs': [ 14 'include_dirs': [
15 '..', 15 '..',
16 ], 16 ],
17 }, 17 },
18 {
19 'target_name': 'nacl_cmd_line',
Mark Seaborn 2013/07/19 15:14:28 Is there a particular reason that this file is in
20 'type': 'static_library',
21 'sources': [
22 'nacl/common/nacl_cmd_line.cc',
23 'nacl/common/nacl_cmd_line.h',
24 ],
25 'include_dirs': [
26 '..',
27 ],
28 },
18 ], 29 ],
19 'conditions': [ 30 'conditions': [
20 ['OS=="win" and target_arch=="ia32"', { 31 ['OS=="win" and target_arch=="ia32"', {
21 'targets': [ 32 'targets': [
22 { 33 {
23 'target_name': 'nacl_switches_win64', 34 'target_name': 'nacl_switches_win64',
24 'type': 'static_library', 35 'type': 'static_library',
25 'sources': [ 36 'sources': [
26 'nacl/common/nacl_switches.cc', 37 'nacl/common/nacl_switches.cc',
27 'nacl/common/nacl_switches.h', 38 'nacl/common/nacl_switches.h',
28 ], 39 ],
29 'include_dirs': [ 40 'include_dirs': [
30 '..', 41 '..',
31 ], 42 ],
32 'configurations': { 43 'configurations': {
33 'Common_Base': { 44 'Common_Base': {
34 'msvs_target_platform': 'x64', 45 'msvs_target_platform': 'x64',
35 }, 46 },
36 }, 47 },
37 }, 48 },
38 ], 49 ],
39 }], 50 }],
40 ], 51 ],
41 } 52 }
OLDNEW
« chrome/nacl.gypi ('K') | « components/nacl/common/nacl_cmd_line.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698