OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'content_shell_lib', | 11 'target_name': 'content_shell_lib', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'defines!': ['CONTENT_IMPLEMENTATION'], | 13 'defines!': ['CONTENT_IMPLEMENTATION'], |
14 'variables': { | 14 'variables': { |
15 'chromium_code': 1, | 15 'chromium_code': 1, |
16 }, | 16 }, |
17 'dependencies': [ | 17 'dependencies': [ |
18 'content_app', | 18 'content_app', |
19 'content_browser', | 19 'content_browser', |
20 'content_common', | 20 'content_common', |
21 'content_gpu', | 21 'content_gpu', |
22 'content_plugin', | 22 'content_plugin', |
23 'content_ppapi_plugin', | 23 'content_ppapi_plugin', |
24 'content_renderer', | 24 'content_renderer', |
25 'content_shell_resources', | 25 'content_shell_resources', |
26 'content_utility', | 26 'content_utility', |
27 'content_worker', | 27 'content_worker', |
28 'content_resources.gyp:content_resources', | 28 'content_resources.gyp:content_resources', |
29 '<(DEPTH)/net/net.gyp:net_resources', | |
jochen (gone - plz use gerrit)
2012/08/10 09:48:05
this should go next to the other _resources depend
| |
29 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
30 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 31 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
31 '../build/temp_gyp/googleurl.gyp:googleurl', | 32 '../build/temp_gyp/googleurl.gyp:googleurl', |
32 '../ipc/ipc.gyp:ipc', | 33 '../ipc/ipc.gyp:ipc', |
33 '../media/media.gyp:media', | 34 '../media/media.gyp:media', |
34 '../net/net.gyp:net', | 35 '../net/net.gyp:net', |
35 '../skia/skia.gyp:skia', | 36 '../skia/skia.gyp:skia', |
36 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 37 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
37 '../ui/ui.gyp:ui', | 38 '../ui/ui.gyp:ui', |
38 '../v8/tools/gyp/v8.gyp:v8', | 39 '../v8/tools/gyp/v8.gyp:v8', |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
663 'dependencies': [ | 664 'dependencies': [ |
664 'content_java', | 665 'content_java', |
665 ], | 666 ], |
666 } | 667 } |
667 ], | 668 ], |
668 }, | 669 }, |
669 ], | 670 ], |
670 }], # OS=="android" | 671 }], # OS=="android" |
671 ] | 672 ] |
672 } | 673 } |
OLD | NEW |