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 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
11 'content_shell_version': '19.77.34.5', | 11 'content_shell_version': '19.77.34.5', |
12 'conditions': [ | 12 'conditions': [ |
13 ['OS=="linux"', { | 13 ['OS=="linux"', { |
14 'use_custom_freetype%': 1, | 14 'use_custom_freetype%': 1, |
15 }, { | 15 }, { |
16 'use_custom_freetype%': 0, | 16 'use_custom_freetype%': 0, |
17 }], | 17 }], |
18 ], | 18 ], |
19 }, | 19 }, |
20 'targets': [ | 20 'targets': [ |
21 { | 21 { |
22 'target_name': 'content_shell_lib', | 22 'target_name': 'content_shell_lib', |
23 'type': 'static_library', | 23 'type': 'static_library', |
24 'defines!': ['CONTENT_IMPLEMENTATION'], | 24 'defines!': ['CONTENT_IMPLEMENTATION'], |
25 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], | 25 'defines': ['CONTENT_SHELL_VERSION="<(content_shell_version)"'], |
26 'variables': { | 26 'variables': { |
27 'chromium_code': 1, | 27 'chromium_code': 1, |
28 }, | 28 }, |
29 'dependencies': [ | 29 'dependencies': [ |
30 'content_app', | 30 'content_app_both', |
31 'content_browser', | 31 'content_browser', |
32 'content_common', | 32 'content_common', |
33 'content_gpu', | 33 'content_gpu', |
34 'content_plugin', | 34 'content_plugin', |
35 'content_ppapi_plugin', | 35 'content_ppapi_plugin', |
36 'content_renderer', | 36 'content_renderer', |
37 'content_shell_resources', | 37 'content_shell_resources', |
38 'content_utility', | 38 'content_utility', |
39 'content_worker', | 39 'content_worker', |
40 'test_support_content', | 40 'test_support_content', |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 '../tools/imagediff/image_diff.gyp:image_diff#host', | 738 '../tools/imagediff/image_diff.gyp:image_diff#host', |
739 ], | 739 ], |
740 }], | 740 }], |
741 ], | 741 ], |
742 'includes': [ '../build/java_apk.gypi' ], | 742 'includes': [ '../build/java_apk.gypi' ], |
743 }, | 743 }, |
744 ], | 744 ], |
745 }], # OS=="android" | 745 }], # OS=="android" |
746 ] | 746 ] |
747 } | 747 } |
OLD | NEW |