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. | |
69 'export_dependent_settings': [ | 67 'export_dependent_settings': [ |
70 '../content/content.gyp:content_browser', | 68 '../content/content.gyp:content_browser', |
71 '../sync/sync.gyp:sync', | |
72 ], | 69 ], |
73 'sources': [ | 70 'sources': [ |
74 # All .cc, .h, .m, and .mm files under browser/extensions except for | 71 # All .cc, .h, .m, and .mm files under browser/extensions except for |
75 # tests and mocks. | 72 # tests and mocks. |
76 'browser/apps/app_launch_for_metro_restart_win.cc', | 73 'browser/apps/app_launch_for_metro_restart_win.cc', |
77 'browser/apps/app_launch_for_metro_restart_win.h', | 74 'browser/apps/app_launch_for_metro_restart_win.h', |
78 'browser/apps/app_url_redirector.cc', | 75 'browser/apps/app_url_redirector.cc', |
79 'browser/apps/app_url_redirector.h', | 76 'browser/apps/app_url_redirector.h', |
80 'browser/apps/chrome_apps_client.cc', | 77 'browser/apps/chrome_apps_client.cc', |
81 'browser/apps/chrome_apps_client.h', | 78 'browser/apps/chrome_apps_client.h', |
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1199 'variables': { | 1196 'variables': { |
1200 'proto_in_dir': 'browser/chromeos/contacts', | 1197 'proto_in_dir': 'browser/chromeos/contacts', |
1201 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1198 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
1202 }, | 1199 }, |
1203 'includes': [ '../build/protoc.gypi' ] | 1200 'includes': [ '../build/protoc.gypi' ] |
1204 }, | 1201 }, |
1205 ], | 1202 ], |
1206 },], # 'chromeos=1' | 1203 },], # 'chromeos=1' |
1207 ], # 'conditions' | 1204 ], # 'conditions' |
1208 } | 1205 } |
OLD | NEW |