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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 2501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2512 'browser/views/extensions/extension_shelf.cc', | 2512 'browser/views/extensions/extension_shelf.cc', |
2513 'browser/views/extensions/extension_shelf.h', | 2513 'browser/views/extensions/extension_shelf.h', |
2514 'browser/views/extensions/extension_view.cc', | 2514 'browser/views/extensions/extension_view.cc', |
2515 'browser/views/extensions/extension_view.h', | 2515 'browser/views/extensions/extension_view.h', |
2516 # Windows-specific files. | 2516 # Windows-specific files. |
2517 'browser/password_manager/password_store_win.cc', | 2517 'browser/password_manager/password_store_win.cc', |
2518 'browser/password_manager/password_store_win.h', | 2518 'browser/password_manager/password_store_win.h', |
2519 ], | 2519 ], |
2520 'sources': [ | 2520 'sources': [ |
2521 'browser/net/ssl_config_service_manager_pref.cc', | 2521 'browser/net/ssl_config_service_manager_pref.cc', |
| 2522 'browser/spellcheck_host.cc', |
| 2523 'browser/spellcheck_host.h', |
2522 ], | 2524 ], |
2523 'sources/': [ | 2525 'sources/': [ |
2524 # Exclude most of printing. | 2526 # Exclude most of printing. |
2525 ['exclude', '^browser/printing/'], | 2527 ['exclude', '^browser/printing/'], |
2526 ['include', '^browser/printing/page_(number|range|setup)\\.cc$'], | 2528 ['include', '^browser/printing/page_(number|range|setup)\\.cc$'], |
2527 ], | 2529 ], |
2528 'conditions': [ | 2530 'conditions': [ |
2529 ['linux_breakpad==1', { | 2531 ['linux_breakpad==1', { |
2530 'sources': [ | 2532 'sources': [ |
2531 'browser/renderer_host/render_crash_handler_host_linux.cc', | 2533 'browser/renderer_host/render_crash_handler_host_linux.cc', |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3212 'target_name': 'renderer', | 3214 'target_name': 'renderer', |
3213 'type': '<(library)', | 3215 'type': '<(library)', |
3214 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 3216 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
3215 'dependencies': [ | 3217 'dependencies': [ |
3216 'common', | 3218 'common', |
3217 'plugin', | 3219 'plugin', |
3218 'chrome_resources', | 3220 'chrome_resources', |
3219 'chrome_strings', | 3221 'chrome_strings', |
3220 '../printing/printing.gyp:printing', | 3222 '../printing/printing.gyp:printing', |
3221 '../skia/skia.gyp:skia', | 3223 '../skia/skia.gyp:skia', |
| 3224 '../third_party/hunspell/hunspell.gyp:hunspell', |
3222 '../third_party/icu/icu.gyp:icui18n', | 3225 '../third_party/icu/icu.gyp:icui18n', |
3223 '../third_party/icu/icu.gyp:icuuc', | 3226 '../third_party/icu/icu.gyp:icuuc', |
3224 '../third_party/npapi/npapi.gyp:npapi', | 3227 '../third_party/npapi/npapi.gyp:npapi', |
3225 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', | 3228 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', |
3226 '../webkit/webkit.gyp:glue', | 3229 '../webkit/webkit.gyp:glue', |
3227 '../webkit/api/WebKit.gyp:webkit', | 3230 '../webkit/api/WebKit.gyp:webkit', |
3228 ], | 3231 ], |
3229 'include_dirs': [ | 3232 'include_dirs': [ |
3230 '..', | 3233 '..', |
3231 ], | 3234 ], |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3350 'dependencies': [ | 3353 'dependencies': [ |
3351 'nacl', | 3354 'nacl', |
3352 ], | 3355 ], |
3353 }], | 3356 }], |
3354 # Linux-specific rules. | 3357 # Linux-specific rules. |
3355 ['OS=="linux"', { | 3358 ['OS=="linux"', { |
3356 'dependencies': [ | 3359 'dependencies': [ |
3357 '../build/linux/system.gyp:gtk', | 3360 '../build/linux/system.gyp:gtk', |
3358 '../sandbox/sandbox.gyp:sandbox', | 3361 '../sandbox/sandbox.gyp:sandbox', |
3359 ], | 3362 ], |
| 3363 'sources': [ |
| 3364 'renderer/spellchecker/spellcheck.cc', |
| 3365 'renderer/spellchecker/spellcheck.h', |
| 3366 'renderer/spellchecker/spellcheck_worditerator.cc', |
| 3367 'renderer/spellchecker/spellcheck_worditerator.h', |
| 3368 ], |
3360 }], | 3369 }], |
3361 # Windows-specific rules. | 3370 # Windows-specific rules. |
3362 ['OS=="win"', { | 3371 ['OS=="win"', { |
3363 'include_dirs': [ | 3372 'include_dirs': [ |
3364 'third_party/wtl/include', | 3373 'third_party/wtl/include', |
3365 ], | 3374 ], |
3366 'dependencies': [ | 3375 'dependencies': [ |
3367 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', | 3376 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', |
3368 ], | 3377 ], |
3369 'export_dependent_settings': [ | 3378 'export_dependent_settings': [ |
(...skipping 3604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6974 ] | 6983 ] |
6975 }], | 6984 }], |
6976 ], # 'conditions' | 6985 ], # 'conditions' |
6977 } | 6986 } |
6978 | 6987 |
6979 # Local Variables: | 6988 # Local Variables: |
6980 # tab-width:2 | 6989 # tab-width:2 |
6981 # indent-tabs-mode:nil | 6990 # indent-tabs-mode:nil |
6982 # End: | 6991 # End: |
6983 # vim: set expandtab tabstop=2 shiftwidth=2: | 6992 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |