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

Side by Side Diff: content/content.gyp

Issue 1796033002: Add GYP support for Chrome's mojo manifest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | mojo/public/mojo_application_manifest.gypi » ('j') | 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'type': 'static_library', 51 'type': 'static_library',
52 'include_dirs': [ '<@(DEPTH)' ], 52 'include_dirs': [ '<@(DEPTH)' ],
53 'dependencies': [ 53 'dependencies': [
54 'common_features', 54 'common_features',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 'public/common/feature_h264_with_openh264_ffmpeg.cc', 57 'public/common/feature_h264_with_openh264_ffmpeg.cc',
58 'public/common/feature_h264_with_openh264_ffmpeg.h', 58 'public/common/feature_h264_with_openh264_ffmpeg.h',
59 ], 59 ],
60 }, 60 },
61 {
62 # GN version: //content/browser:chrome_manifest
63 'target_name': 'chrome_manifest',
64 'type': 'none',
65 'variables': {
66 'application_type': 'exe',
67 'application_name': 'chrome',
68 'source_manifest': '<(DEPTH)/content/browser/mojo/chrome_manifest.json',
69 },
70 'includes': [
71 '../mojo/public/mojo_application_manifest.gypi',
72 ],
73 },
74 {
75 # GN version: //content/browser:chrome_renderer_manifest
76 'target_name': 'chrome_renderer_manifest',
77 'type': 'none',
78 'variables': {
79 'application_type': 'exe',
80 'application_name': 'chrome_renderer',
81 'source_manifest':
82 '<(DEPTH)/content/browser/mojo/chrome_renderer_manifest.json',
83 },
84 'includes': [
85 '../mojo/public/mojo_application_manifest.gypi',
86 ],
87 },
61 ], 88 ],
62 'includes': [ 89 'includes': [
63 '../build/win_precompile.gypi', 90 '../build/win_precompile.gypi',
64 'content_resources.gypi', 91 'content_resources.gypi',
65 ], 92 ],
66 'conditions': [ 93 'conditions': [
67 ['OS == "win"', { 94 ['OS == "win"', {
68 'targets': [ 95 'targets': [
69 { 96 {
70 # GN: //content:sandbox_helper_win 97 # GN: //content:sandbox_helper_win
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'target_name': 'content_browser', 203 'target_name': 'content_browser',
177 'type': 'static_library', 204 'type': 'static_library',
178 'variables': { 'enable_wexit_time_destructors': 1, }, 205 'variables': { 'enable_wexit_time_destructors': 1, },
179 'includes': [ 206 'includes': [
180 'content_browser.gypi', 207 'content_browser.gypi',
181 # Disable LTO due to ELF section name out of range 208 # Disable LTO due to ELF section name out of range
182 # crbug.com/422251 209 # crbug.com/422251
183 '../build/android/disable_gcc_lto.gypi', 210 '../build/android/disable_gcc_lto.gypi',
184 ], 211 ],
185 'dependencies': [ 212 'dependencies': [
213 'chrome_manifest',
214 'chrome_renderer_manifest',
186 'content_common', 215 'content_common',
187 'content_resources', 216 'content_resources',
188 ], 217 ],
189 'export_dependent_settings': [ 218 'export_dependent_settings': [
190 'content_common', 219 'content_common',
191 ], 220 ],
192 'conditions': [ 221 'conditions': [
193 ['java_bridge==1', { 222 ['java_bridge==1', {
194 'dependencies': [ 223 'dependencies': [
195 'content_child', 224 'content_child',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 # GN version: //content/browser and //content/public/browser 402 # GN version: //content/browser and //content/public/browser
374 'target_name': 'content_browser', 403 'target_name': 'content_browser',
375 'type': 'none', 404 'type': 'none',
376 'dependencies': ['content'], 405 'dependencies': ['content'],
377 'export_dependent_settings': ['content'], 406 'export_dependent_settings': ['content'],
378 }, 407 },
379 { 408 {
380 # GN version: //content/common and //content/public/common 409 # GN version: //content/common and //content/public/common
381 'target_name': 'content_common', 410 'target_name': 'content_common',
382 'type': 'none', 411 'type': 'none',
383 'dependencies': ['content', 'content_resources'], 412 'dependencies': [
413 'chrome_manifest',
414 'chrome_renderer_manifest',
415 'content',
416 'content_resources'
417 ],
384 # Disable c4267 warnings until we fix size_t to int truncations. 418 # Disable c4267 warnings until we fix size_t to int truncations.
385 'msvs_disabled_warnings': [ 4267, ], 419 'msvs_disabled_warnings': [ 4267, ],
386 'export_dependent_settings': ['content'], 420 'export_dependent_settings': ['content'],
387 }, 421 },
388 { 422 {
389 # GN Version: //content/child 423 # GN Version: //content/child
390 'target_name': 'content_child', 424 'target_name': 'content_child',
391 'type': 'none', 425 'type': 'none',
392 'dependencies': ['content'], 426 'dependencies': ['content'],
393 }, 427 },
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 }, 702 },
669 'includes': [ 703 'includes': [
670 '../build/android/copy_ex.gypi', 704 '../build/android/copy_ex.gypi',
671 '../build/android/v8_external_startup_data_arch_suffix.gypi', 705 '../build/android/v8_external_startup_data_arch_suffix.gypi',
672 ], 706 ],
673 }, 707 },
674 ], 708 ],
675 }], # OS == "android" 709 }], # OS == "android"
676 ], 710 ],
677 } 711 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/mojo_application_manifest.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698