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

Side by Side Diff: content/content.gyp

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 ], 277 ],
278 }, 278 },
279 { 279 {
280 # GN version: //content/utility and //content/public/utility 280 # GN version: //content/utility and //content/public/utility
281 'target_name': 'content_utility', 281 'target_name': 'content_utility',
282 'type': 'static_library', 282 'type': 'static_library',
283 'variables': { 'enable_wexit_time_destructors': 1, }, 283 'variables': { 'enable_wexit_time_destructors': 1, },
284 'includes': [ 284 'includes': [
285 'content_utility.gypi', 285 'content_utility.gypi',
286 ], 286 ],
287 'sources': [
288 '<@(public_utility_sources)',
289 '<@(utility_sources)',
290 ],
287 'dependencies': [ 291 'dependencies': [
288 'content_child', 292 'content_child',
289 'content_common', 293 'content_common',
290 ], 294 ],
291 }, 295 },
292 ], 296 ],
293 }], 297 }],
294 ], 298 ],
295 }, 299 },
296 { # component != static_library 300 { # component != static_library
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 ], 622 ],
619 }, 623 },
620 ], 624 ],
621 }], 625 }],
622 ], 626 ],
623 }, 627 },
624 ], 628 ],
625 }], # OS == "android" 629 }], # OS == "android"
626 ], 630 ],
627 } 631 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698