| 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', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 '../third_party/expat/expat.gyp:expat', | 26 '../third_party/expat/expat.gyp:expat', |
| 27 '../third_party/icu/icu.gyp:icui18n', | 27 '../third_party/icu/icu.gyp:icui18n', |
| 28 '../third_party/icu/icu.gyp:icuuc', | 28 '../third_party/icu/icu.gyp:icuuc', |
| 29 '../third_party/libjingle/libjingle.gyp:libjingle', | 29 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 30 '../third_party/libxml/libxml.gyp:libxml', | 30 '../third_party/libxml/libxml.gyp:libxml', |
| 31 '../third_party/npapi/npapi.gyp:npapi', | 31 '../third_party/npapi/npapi.gyp:npapi', |
| 32 '../third_party/hunspell/hunspell.gyp:hunspell', | 32 '../third_party/hunspell/hunspell.gyp:hunspell', |
| 33 '../webkit/webkit.gyp:appcache', | 33 '../webkit/webkit.gyp:appcache', |
| 34 '../webkit/webkit.gyp:database', | 34 '../webkit/webkit.gyp:database', |
| 35 '../webkit/webkit.gyp:glue', | 35 '../webkit/webkit.gyp:glue', |
| 36 '../webkit/webkit.gyp:webkit_resources', |
| 36 ], | 37 ], |
| 37 'include_dirs': [ | 38 'include_dirs': [ |
| 38 '..', | 39 '..', |
| 39 '<(INTERMEDIATE_DIR)', | 40 '<(INTERMEDIATE_DIR)', |
| 40 ], | 41 ], |
| 41 'defines': [ | 42 'defines': [ |
| 42 '<@(nacl_defines)', | 43 '<@(nacl_defines)', |
| 43 ], | 44 ], |
| 44 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
| 45 'defines': [ | 46 'defines': [ |
| (...skipping 3018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3064 'browser/external_tab_container.cc', | 3065 'browser/external_tab_container.cc', |
| 3065 'browser/google_update.cc', | 3066 'browser/google_update.cc', |
| 3066 'browser/history/history_indexer.idl', | 3067 'browser/history/history_indexer.idl', |
| 3067 'browser/history_tab_ui.cc', | 3068 'browser/history_tab_ui.cc', |
| 3068 'browser/history_view.cc', | 3069 'browser/history_view.cc', |
| 3069 'browser/ime_input.cc', | 3070 'browser/ime_input.cc', |
| 3070 'browser/importer/ie_importer.cc', | 3071 'browser/importer/ie_importer.cc', |
| 3071 'browser/jumplist.cc', | 3072 'browser/jumplist.cc', |
| 3072 ], | 3073 ], |
| 3073 }], | 3074 }], |
| 3074 # views depends on webkit headers. | |
| 3075 ['OS=="win" or chromeos==1 or toolkit_views==1',{ | |
| 3076 'dependencies': [ | |
| 3077 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', | |
| 3078 ], | |
| 3079 }], | |
| 3080 ], | 3075 ], |
| 3081 }, | 3076 }, |
| 3082 { | 3077 { |
| 3083 'target_name': 'component_extensions', | 3078 'target_name': 'component_extensions', |
| 3084 'type': 'none', | 3079 'type': 'none', |
| 3085 'msvs_guid': '50B52703-525F-404C-BFE2-C46D3375D73E', | 3080 'msvs_guid': '50B52703-525F-404C-BFE2-C46D3375D73E', |
| 3086 # TODO(aa): Once the msvs port supports it, change this to recursively | 3081 # TODO(aa): Once the msvs port supports it, change this to recursively |
| 3087 # copy the entire directory instead of listing the files. | 3082 # copy the entire directory instead of listing the files. |
| 3088 # http://code.google.com/p/gyp/issues/detail?id=143. | 3083 # http://code.google.com/p/gyp/issues/detail?id=143. |
| 3089 'copies': [ | 3084 'copies': [ |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3193 ] | 3188 ] |
| 3194 }, | 3189 }, |
| 3195 ], | 3190 ], |
| 3196 } | 3191 } |
| 3197 | 3192 |
| 3198 # Local Variables: | 3193 # Local Variables: |
| 3199 # tab-width:2 | 3194 # tab-width:2 |
| 3200 # indent-tabs-mode:nil | 3195 # indent-tabs-mode:nil |
| 3201 # End: | 3196 # End: |
| 3202 # vim: set expandtab tabstop=2 shiftwidth=2: | 3197 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |