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

Side by Side Diff: content/content_app.gypi

Issue 7863024: Make the NaCl windows 64 bit binaries not depend on chrome targets. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove nacl_win64 and dummy hacks Created 9 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 | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_app', 8 'target_name': 'content_app',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 'content_browser', 14 'content_browser',
15 'content_common', 15 'content_common',
16 '../base/base.gyp:base', 16 '../base/base.gyp:base',
17 '../base/base.gyp:base_i18n', 17 '../base/base.gyp:base_i18n',
18 '../crypto/crypto.gyp:crypto', 18 '../crypto/crypto.gyp:crypto',
19 '../ui/ui.gyp:ui', 19 '../ui/ui.gyp:ui',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'app/content_main.cc', 22 'app/content_main.cc',
23 'app/content_main.h', 23 'app/content_main.h',
24 'app/content_main_delegate.h', 24 'app/content_main_delegate.h',
25 'app/sandbox_helper_win.cc', 25 'app/sandbox_helper_win.cc',
26 'app/sandbox_helper_win.h', 26 'app/sandbox_helper_win.h',
27 'app/startup_helper_win.cc',
28 'app/startup_helper_win.h',
27 ], 29 ],
28 'conditions': [ 30 'conditions': [
29 ['OS=="win"', { 31 ['OS=="win"', {
30 'dependencies': [ 32 'dependencies': [
31 '../sandbox/sandbox.gyp:sandbox', 33 '../sandbox/sandbox.gyp:sandbox',
32 ], 34 ],
33 }], 35 }],
34 ], 36 ],
35 }, 37 },
36 ], 38 ],
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698