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 '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 15 matching lines...) Expand all Loading... |
26 }, | 26 }, |
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', | |
37 'content_shell.gypi', | 36 'content_shell.gypi', |
38 ], | 37 ], |
39 }], | 38 }], |
40 # In component mode, we build all of content as a single DLL. | 39 # 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 | 40 # However, in the static mode, we need to build content as multiple |
42 # targets in order to prevent dependencies from getting introduced | 41 # targets in order to prevent dependencies from getting introduced |
43 # upstream unnecessarily (e.g., content_renderer depends on allocator | 42 # upstream unnecessarily (e.g., content_renderer depends on allocator |
44 # and chrome_exe depends on content_common but we don't want | 43 # and chrome_exe depends on content_common but we don't want |
45 # chrome_exe to have to depend on allocator). | 44 # chrome_exe to have to depend on allocator). |
46 ['component=="static_library"', { | 45 ['component=="static_library"', { |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'dependencies': [ | 342 'dependencies': [ |
344 'surface_texture_jni_headers', | 343 'surface_texture_jni_headers', |
345 'surface_jni_headers', | 344 'surface_jni_headers', |
346 ], | 345 ], |
347 'includes': [ 'content_jni.gypi' ], | 346 'includes': [ 'content_jni.gypi' ], |
348 }, | 347 }, |
349 ], | 348 ], |
350 }], # OS == "android" | 349 }], # OS == "android" |
351 ], | 350 ], |
352 } | 351 } |
OLD | NEW |