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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 4537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4548 '../third_party/codesighs/codesighs.gyp:*', | 4548 '../third_party/codesighs/codesighs.gyp:*', |
4549 '../third_party/icu38/icu38.gyp:*', | 4549 '../third_party/icu38/icu38.gyp:*', |
4550 '../third_party/libjpeg/libjpeg.gyp:*', | 4550 '../third_party/libjpeg/libjpeg.gyp:*', |
4551 '../third_party/libpng/libpng.gyp:*', | 4551 '../third_party/libpng/libpng.gyp:*', |
4552 '../third_party/libxml/libxml.gyp:*', | 4552 '../third_party/libxml/libxml.gyp:*', |
4553 '../third_party/libxslt/libxslt.gyp:*', | 4553 '../third_party/libxslt/libxslt.gyp:*', |
4554 '../third_party/lzma_sdk/lzma_sdk.gyp:*', | 4554 '../third_party/lzma_sdk/lzma_sdk.gyp:*', |
4555 '../third_party/modp_b64/modp_b64.gyp:*', | 4555 '../third_party/modp_b64/modp_b64.gyp:*', |
4556 '../third_party/npapi/npapi.gyp:*', | 4556 '../third_party/npapi/npapi.gyp:*', |
4557 '../third_party/sqlite/sqlite.gyp:*', | 4557 '../third_party/sqlite/sqlite.gyp:*', |
| 4558 '../third_party/tcmalloc/tcmalloc.gyp:*', |
4558 '../third_party/zlib/zlib.gyp:*', | 4559 '../third_party/zlib/zlib.gyp:*', |
4559 '../webkit/tools/test_shell/test_shell.gyp:*', | 4560 '../webkit/tools/test_shell/test_shell.gyp:*', |
4560 '../webkit/webkit.gyp:*', | 4561 '../webkit/webkit.gyp:*', |
4561 | 4562 |
4562 '../build/temp_gyp/googleurl.gyp:*', | 4563 '../build/temp_gyp/googleurl.gyp:*', |
4563 | 4564 |
4564 '../breakpad/breakpad.gyp:*', | 4565 '../breakpad/breakpad.gyp:*', |
4565 '../courgette/courgette.gyp:*', | 4566 '../courgette/courgette.gyp:*', |
4566 '../gears/gears.gyp:*', | 4567 '../gears/gears.gyp:*', |
4567 '../rlz/rlz.gyp:*', | 4568 '../rlz/rlz.gyp:*', |
(...skipping 18 matching lines...) Expand all Loading... |
4586 '<@(chromium_dependencies)', | 4587 '<@(chromium_dependencies)', |
4587 'chrome_dll_version', | 4588 'chrome_dll_version', |
4588 'chrome_resources', | 4589 'chrome_resources', |
4589 'installer/installer.gyp:installer_util_strings', | 4590 'installer/installer.gyp:installer_util_strings', |
4590 'theme_dll', | 4591 'theme_dll', |
4591 'worker', | 4592 'worker', |
4592 '../printing/printing.gyp:printing', | 4593 '../printing/printing.gyp:printing', |
4593 '../net/net.gyp:net_resources', | 4594 '../net/net.gyp:net_resources', |
4594 '../build/util/support/support.gyp:*', | 4595 '../build/util/support/support.gyp:*', |
4595 '../third_party/cld/cld.gyp:cld', | 4596 '../third_party/cld/cld.gyp:cld', |
| 4597 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', |
4596 '../views/views.gyp:views', | 4598 '../views/views.gyp:views', |
4597 '../webkit/webkit.gyp:webkit_resources', | 4599 '../webkit/webkit.gyp:webkit_resources', |
4598 '../gears/gears.gyp:gears', | 4600 '../gears/gears.gyp:gears', |
4599 ], | 4601 ], |
4600 'defines': [ | 4602 'defines': [ |
4601 'CHROME_DLL', | 4603 'CHROME_DLL', |
4602 'BROWSER_DLL', | 4604 'BROWSER_DLL', |
4603 'RENDERER_DLL', | 4605 'RENDERER_DLL', |
4604 'PLUGIN_DLL', | 4606 'PLUGIN_DLL', |
4605 ], | 4607 ], |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5208 # Use outputs of this action as inputs for the main target build. | 5210 # Use outputs of this action as inputs for the main target build. |
5209 # Seems as a misnomer but makes this happy on Linux (scons). | 5211 # Seems as a misnomer but makes this happy on Linux (scons). |
5210 'process_outputs_as_sources': 1, | 5212 'process_outputs_as_sources': 1, |
5211 }, | 5213 }, |
5212 ], # 'actions' | 5214 ], # 'actions' |
5213 }, | 5215 }, |
5214 ] | 5216 ] |
5215 }], | 5217 }], |
5216 ], # 'conditions' | 5218 ], # 'conditions' |
5217 } | 5219 } |
OLD | NEW |