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

Side by Side Diff: chrome/nacl.gypi

Issue 8348026: Add a component installer for Portable NaCl. Registration of installer is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes to rebase Created 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'nacl_target': 0, 8 'nacl_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 12 matching lines...) Expand all
23 # .cc, .h, and .mm files under nacl that are used on all 23 # .cc, .h, and .mm files under nacl that are used on all
24 # platforms, including both 32-bit and 64-bit Windows. 24 # platforms, including both 32-bit and 64-bit Windows.
25 # Test files are also not included. 25 # Test files are also not included.
26 'nacl/nacl_main.cc', 26 'nacl/nacl_main.cc',
27 'nacl/nacl_main_platform_delegate.h', 27 'nacl/nacl_main_platform_delegate.h',
28 'nacl/nacl_main_platform_delegate_linux.cc', 28 'nacl/nacl_main_platform_delegate_linux.cc',
29 'nacl/nacl_main_platform_delegate_mac.mm', 29 'nacl/nacl_main_platform_delegate_mac.mm',
30 'nacl/nacl_main_platform_delegate_win.cc', 30 'nacl/nacl_main_platform_delegate_win.cc',
31 'nacl/nacl_listener.cc', 31 'nacl/nacl_listener.cc',
32 'nacl/nacl_listener.h', 32 'nacl/nacl_listener.h',
33 'nacl/pnacl_component_installer.cc',
34 'nacl/pnacl_component_installer.h',
33 ], 35 ],
34 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines 36 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines
35 'conditions': [ 37 'conditions': [
36 ['OS=="win"', { 38 ['OS=="win"', {
37 'defines': [ 39 'defines': [
38 '__STDC_LIMIT_MACROS=1', 40 '__STDC_LIMIT_MACROS=1',
39 ], 41 ],
40 'include_dirs': [ 42 'include_dirs': [
41 '<(DEPTH)/third_party/wtl/include', 43 '<(DEPTH)/third_party/wtl/include',
42 ], 44 ],
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 'target_name': 'nacl_win64', 407 'target_name': 'nacl_win64',
406 'type': 'none', 408 'type': 'none',
407 'sources': [], 409 'sources': [],
408 }, 410 },
409 ], 411 ],
410 }], 412 }],
411 ], 413 ],
412 }], 414 }],
413 ], 415 ],
414 } 416 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698