| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'browser', | 8 'target_name': 'browser', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', | 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'common', | 12 'common', |
| 13 'common_net', | 13 'common_net', |
| 14 'chrome_extra_resources', | 14 'chrome_extra_resources', |
| 15 'chrome_resources', | 15 'chrome_resources', |
| 16 'chrome_strings', | 16 'chrome_strings', |
| 17 'debugger', | 17 'debugger', |
| 18 'installer_util', | 18 'installer_util', |
| 19 'platform_locale_settings', | 19 'platform_locale_settings', |
| 20 'profile_import', | 20 'profile_import', |
| 21 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 21 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
| 22 'browser/policy/proto/device_management_proto.gyp:device_management_prot
o_cpp', | 22 'browser/policy/proto/device_management_proto.gyp:device_management_prot
o_cpp', |
| 23 'policy_source', |
| 23 'safe_browsing_csd_proto', | 24 'safe_browsing_csd_proto', |
| 24 'safe_browsing_report_proto', | 25 'safe_browsing_report_proto', |
| 25 'syncapi', | 26 'syncapi', |
| 26 'theme_resources', | 27 'theme_resources', |
| 27 'userfeedback_proto', | 28 'userfeedback_proto', |
| 28 '../app/app.gyp:app_resources', | 29 '../app/app.gyp:app_resources', |
| 29 '../app/app.gyp:app_strings', | 30 '../app/app.gyp:app_strings', |
| 30 '../media/media.gyp:media', | 31 '../media/media.gyp:media', |
| 31 '../ppapi/ppapi.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin | 32 '../ppapi/ppapi.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin |
| 32 '../printing/printing.gyp:printing', | 33 '../printing/printing.gyp:printing', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 43 '../webkit/support/webkit_support.gyp:appcache', | 44 '../webkit/support/webkit_support.gyp:appcache', |
| 44 '../webkit/support/webkit_support.gyp:blob', | 45 '../webkit/support/webkit_support.gyp:blob', |
| 45 '../webkit/support/webkit_support.gyp:database', | 46 '../webkit/support/webkit_support.gyp:database', |
| 46 '../webkit/support/webkit_support.gyp:fileapi', | 47 '../webkit/support/webkit_support.gyp:fileapi', |
| 47 '../webkit/support/webkit_support.gyp:glue', | 48 '../webkit/support/webkit_support.gyp:glue', |
| 48 '../webkit/support/webkit_support.gyp:webkit_resources', | 49 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 49 ], | 50 ], |
| 50 'include_dirs': [ | 51 'include_dirs': [ |
| 51 '..', | 52 '..', |
| 52 '<(INTERMEDIATE_DIR)', | 53 '<(INTERMEDIATE_DIR)', |
| 54 '<(policy_out_dir)', |
| 53 ], | 55 ], |
| 54 'defines': [ | 56 'defines': [ |
| 55 '<@(nacl_defines)', | 57 '<@(nacl_defines)', |
| 56 ], | 58 ], |
| 57 'direct_dependent_settings': { | 59 'direct_dependent_settings': { |
| 58 'defines': [ | 60 'defines': [ |
| 59 '<@(nacl_defines)', | 61 '<@(nacl_defines)', |
| 60 ], | 62 ], |
| 61 }, | 63 }, |
| 62 'sources': [ | 64 'sources': [ |
| (...skipping 4466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4529 ], | 4531 ], |
| 4530 }, | 4532 }, |
| 4531 ], | 4533 ], |
| 4532 } | 4534 } |
| 4533 | 4535 |
| 4534 # Local Variables: | 4536 # Local Variables: |
| 4535 # tab-width:2 | 4537 # tab-width:2 |
| 4536 # indent-tabs-mode:nil | 4538 # indent-tabs-mode:nil |
| 4537 # End: | 4539 # End: |
| 4538 # vim: set expandtab tabstop=2 shiftwidth=2: | 4540 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |