| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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_extensions', | 8 'target_name': 'browser_extensions', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 '../ui/resources/ui_resources.gyp:ui_resources', | 57 '../ui/resources/ui_resources.gyp:ui_resources', |
| 58 '../url/url.gyp:url_lib', | 58 '../url/url.gyp:url_lib', |
| 59 '../webkit/storage_browser.gyp:webkit_storage_browser', | 59 '../webkit/storage_browser.gyp:webkit_storage_browser', |
| 60 '../webkit/storage_common.gyp:webkit_storage_common', | 60 '../webkit/storage_common.gyp:webkit_storage_common', |
| 61 '../webkit/webkit_resources.gyp:webkit_resources', | 61 '../webkit/webkit_resources.gyp:webkit_resources', |
| 62 ], | 62 ], |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 '..', | 64 '..', |
| 65 '<(INTERMEDIATE_DIR)', | 65 '<(INTERMEDIATE_DIR)', |
| 66 ], | 66 ], |
| 67 # This target has header files that include generated header files from |
| 68 # sync. Give our dependents access to those headers. |
| 67 'export_dependent_settings': [ | 69 'export_dependent_settings': [ |
| 68 '../content/content.gyp:content_browser', | 70 '../content/content.gyp:content_browser', |
| 71 '../sync/sync.gyp:sync', |
| 69 ], | 72 ], |
| 70 'sources': [ | 73 'sources': [ |
| 71 # All .cc, .h, .m, and .mm files under browser/extensions except for | 74 # All .cc, .h, .m, and .mm files under browser/extensions except for |
| 72 # tests and mocks. | 75 # tests and mocks. |
| 73 'browser/apps/app_launch_for_metro_restart_win.cc', | 76 'browser/apps/app_launch_for_metro_restart_win.cc', |
| 74 'browser/apps/app_launch_for_metro_restart_win.h', | 77 'browser/apps/app_launch_for_metro_restart_win.h', |
| 75 'browser/apps/app_url_redirector.cc', | 78 'browser/apps/app_url_redirector.cc', |
| 76 'browser/apps/app_url_redirector.h', | 79 'browser/apps/app_url_redirector.h', |
| 77 'browser/apps/chrome_apps_client.cc', | 80 'browser/apps/chrome_apps_client.cc', |
| 78 'browser/apps/chrome_apps_client.h', | 81 'browser/apps/chrome_apps_client.h', |
| (...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 'variables': { | 1199 'variables': { |
| 1197 'proto_in_dir': 'browser/chromeos/contacts', | 1200 'proto_in_dir': 'browser/chromeos/contacts', |
| 1198 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1201 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
| 1199 }, | 1202 }, |
| 1200 'includes': [ '../build/protoc.gypi' ] | 1203 'includes': [ '../build/protoc.gypi' ] |
| 1201 }, | 1204 }, |
| 1202 ], | 1205 ], |
| 1203 },], # 'chromeos=1' | 1206 },], # 'chromeos=1' |
| 1204 ], # 'conditions' | 1207 ], # 'conditions' |
| 1205 } | 1208 } |
| OLD | NEW |