OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'feature_defines': [ | 7 'feature_defines': [ |
8 'ENABLE_CHANNEL_MESSAGING=1', | 8 'ENABLE_CHANNEL_MESSAGING=1', |
9 'ENABLE_DATABASE=1', | 9 'ENABLE_DATABASE=1', |
10 'ENABLE_DASHBOARD_SUPPORT=0', | 10 'ENABLE_DASHBOARD_SUPPORT=0', |
(...skipping 3973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3984 'scons_line_length' : 1, | 3984 'scons_line_length' : 1, |
3985 'xcode_settings': { | 3985 'xcode_settings': { |
3986 # Some Mac-specific parts of WebKit won't compile without having this | 3986 # Some Mac-specific parts of WebKit won't compile without having this |
3987 # prefix header injected. | 3987 # prefix header injected. |
3988 # TODO(mark): make this a first-class setting. | 3988 # TODO(mark): make this a first-class setting. |
3989 'GCC_PREFIX_HEADER': '../third_party/WebKit/WebCore/WebCorePrefix.h', | 3989 'GCC_PREFIX_HEADER': '../third_party/WebKit/WebCore/WebCorePrefix.h', |
3990 }, | 3990 }, |
3991 'conditions': [ | 3991 'conditions': [ |
3992 ['javascript_engine=="v8"', { | 3992 ['javascript_engine=="v8"', { |
3993 'dependencies': [ | 3993 'dependencies': [ |
3994 '../build/temp_gyp/v8.gyp:v8', | 3994 '../v8/tools/gyp/v8.gyp:v8', |
3995 ], | 3995 ], |
3996 'export_dependent_settings': [ | 3996 'export_dependent_settings': [ |
3997 '../build/temp_gyp/v8.gyp:v8', | 3997 '../v8/tools/gyp/v8.gyp:v8', |
3998 ], | 3998 ], |
3999 }], | 3999 }], |
4000 ['OS=="linux"', { | 4000 ['OS=="linux"', { |
4001 'dependencies': [ | 4001 'dependencies': [ |
4002 '../build/linux/system.gyp:gtk', | 4002 '../build/linux/system.gyp:gtk', |
4003 ], | 4003 ], |
4004 'sources': [ | 4004 'sources': [ |
4005 '../third_party/WebKit/WebCore/platform/graphics/chromium/VDMXParser
.cpp', | 4005 '../third_party/WebKit/WebCore/platform/graphics/chromium/VDMXParser
.cpp', |
4006 ], | 4006 ], |
4007 'sources!': [ | 4007 'sources!': [ |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4568 'sources!': [ | 4568 'sources!': [ |
4569 'glue/plugins/plugin_stubs.cc', | 4569 'glue/plugins/plugin_stubs.cc', |
4570 # Used directly in test_shell* so it can be replaced in chromium. | 4570 # Used directly in test_shell* so it can be replaced in chromium. |
4571 'glue/simple_clipboard_impl.cc', | 4571 'glue/simple_clipboard_impl.cc', |
4572 ], | 4572 ], |
4573 }], | 4573 }], |
4574 ], | 4574 ], |
4575 }, | 4575 }, |
4576 ], | 4576 ], |
4577 } | 4577 } |
OLD | NEW |