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

Side by Side Diff: content/content.gyp

Issue 11365199: Move WebContentsDelegateAndroid to content/components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 1 month 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
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 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
(...skipping 16 matching lines...) Expand all
27 'conditions': [ 27 'conditions': [
28 ['inside_chromium_build==1', { 28 ['inside_chromium_build==1', {
29 'includes': [ 29 'includes': [
30 'content_tests.gypi', 30 'content_tests.gypi',
31 ], 31 ],
32 }], 32 }],
33 ['OS != "ios"', { 33 ['OS != "ios"', {
34 'includes': [ 34 'includes': [
35 '../build/win_precompile.gypi', 35 '../build/win_precompile.gypi',
36 'content_components_navigation_interception.gypi', 36 'content_components_navigation_interception.gypi',
37 'content_components_web_contents_delegate_android.gypi',
37 'content_shell.gypi', 38 'content_shell.gypi',
38 ], 39 ],
39 }], 40 }],
40 # In component mode, we build all of content as a single DLL. 41 # In component mode, we build all of content as a single DLL.
41 # However, in the static mode, we need to build content as multiple 42 # However, in the static mode, we need to build content as multiple
42 # targets in order to prevent dependencies from getting introduced 43 # targets in order to prevent dependencies from getting introduced
43 # upstream unnecessarily (e.g., content_renderer depends on allocator 44 # upstream unnecessarily (e.g., content_renderer depends on allocator
44 # and chrome_exe depends on content_common but we don't want 45 # and chrome_exe depends on content_common but we don't want
45 # chrome_exe to have to depend on allocator). 46 # chrome_exe to have to depend on allocator).
46 ['component=="static_library"', { 47 ['component=="static_library"', {
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 'dependencies': [ 320 'dependencies': [
320 'surface_texture_jni_headers', 321 'surface_texture_jni_headers',
321 'surface_jni_headers', 322 'surface_jni_headers',
322 ], 323 ],
323 'includes': [ 'content_jni.gypi' ], 324 'includes': [ 'content_jni.gypi' ],
324 }, 325 },
325 ], 326 ],
326 }], # OS == "android" 327 }], # OS == "android"
327 ], 328 ],
328 } 329 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698