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

Side by Side Diff: content/content.gyp

Issue 410743007: Export content_common dependency from some content targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 (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 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 28 matching lines...) Expand all
39 'COMPILE_CONTENT_STATICALLY', 39 'COMPILE_CONTENT_STATICALLY',
40 ], 40 ],
41 'targets': [ 41 'targets': [
42 { 42 {
43 'target_name': 'content', 43 'target_name': 'content',
44 'type': 'none', 44 'type': 'none',
45 'dependencies': [ 45 'dependencies': [
46 'content_browser', 46 'content_browser',
47 'content_common', 47 'content_common',
48 ], 48 ],
49 'export_dependent_settings': [
50 'content_common',
51 ],
49 'conditions': [ 52 'conditions': [
50 ['OS != "ios"', { 53 ['OS != "ios"', {
51 'dependencies': [ 54 'dependencies': [
52 'content_child', 55 'content_child',
53 'content_gpu', 56 'content_gpu',
54 'content_plugin', 57 'content_plugin',
55 'content_ppapi_plugin', 58 'content_ppapi_plugin',
56 'content_renderer', 59 'content_renderer',
57 'content_utility', 60 'content_utility',
58 'content_worker', 61 'content_worker',
59 ], 62 ],
60 }], 63 }],
61 ], 64 ],
62 }, 65 },
63 { 66 {
64 'target_name': 'content_app_browser', 67 'target_name': 'content_app_browser',
65 'type': 'static_library', 68 'type': 'static_library',
66 'variables': { 'enable_wexit_time_destructors': 1, }, 69 'variables': { 'enable_wexit_time_destructors': 1, },
67 'includes': [ 70 'includes': [
68 'content_app.gypi', 71 'content_app.gypi',
69 ], 72 ],
70 'dependencies': [ 73 'dependencies': [
71 'content_common', 74 'content_common',
72 ], 75 ],
76 'export_dependent_settings': [
77 'content_common',
78 ],
73 'conditions': [ 79 'conditions': [
74 ['chrome_multiple_dll', { 80 ['chrome_multiple_dll', {
75 'defines': [ 81 'defines': [
76 'CHROME_MULTIPLE_DLL_BROWSER', 82 'CHROME_MULTIPLE_DLL_BROWSER',
77 ], 83 ],
78 }], 84 }],
79 ], 85 ],
80 }, 86 },
81 { 87 {
82 'target_name': 'content_app_child', 88 'target_name': 'content_app_child',
83 'type': 'static_library', 89 'type': 'static_library',
84 'variables': { 'enable_wexit_time_destructors': 1, }, 90 'variables': { 'enable_wexit_time_destructors': 1, },
85 'includes': [ 91 'includes': [
86 'content_app.gypi', 92 'content_app.gypi',
87 ], 93 ],
88 'dependencies': [ 94 'dependencies': [
89 'content_common', 95 'content_common',
90 ], 96 ],
97 'export_dependent_settings': [
98 'content_common',
99 ],
91 'conditions': [ 100 'conditions': [
92 ['chrome_multiple_dll', { 101 ['chrome_multiple_dll', {
93 'defines': [ 102 'defines': [
94 'CHROME_MULTIPLE_DLL_CHILD', 103 'CHROME_MULTIPLE_DLL_CHILD',
95 ], 104 ],
96 }], 105 }],
97 ], 106 ],
98 }, 107 },
99 { 108 {
100 'target_name': 'content_app_both', 109 'target_name': 'content_app_both',
(...skipping 13 matching lines...) Expand all
114 'target_name': 'content_browser', 123 'target_name': 'content_browser',
115 'type': 'static_library', 124 'type': 'static_library',
116 'variables': { 'enable_wexit_time_destructors': 1, }, 125 'variables': { 'enable_wexit_time_destructors': 1, },
117 'includes': [ 126 'includes': [
118 'content_browser.gypi', 127 'content_browser.gypi',
119 ], 128 ],
120 'dependencies': [ 129 'dependencies': [
121 'content_common', 130 'content_common',
122 'content_resources.gyp:content_resources', 131 'content_resources.gyp:content_resources',
123 ], 132 ],
133 'export_dependent_settings': [
134 'content_common',
135 ],
124 'conditions': [ 136 'conditions': [
125 ['java_bridge==1', { 137 ['java_bridge==1', {
126 'dependencies': [ 138 'dependencies': [
127 'content_child', 139 'content_child',
128 ] 140 ]
129 }], 141 }],
130 ['OS=="android"', { 142 ['OS=="android"', {
131 'dependencies': [ 143 'dependencies': [
132 'content_gpu', 144 'content_gpu',
133 'content_utility', 145 'content_utility',
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 'browser/gamepad/canonical_axis_index_list.h', 587 'browser/gamepad/canonical_axis_index_list.h',
576 'browser/gamepad/canonical_button_index_list.h', 588 'browser/gamepad/canonical_button_index_list.h',
577 ], 589 ],
578 }, 590 },
579 'includes': [ '../build/android/java_cpp_template.gypi' ], 591 'includes': [ '../build/android/java_cpp_template.gypi' ],
580 }, 592 },
581 ], 593 ],
582 }], # OS == "android" 594 }], # OS == "android"
583 ], 595 ],
584 } 596 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698