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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 '../url/url.gyp:url_lib', | 56 '../url/url.gyp:url_lib', |
57 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 57 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
58 '../webkit/storage_browser.gyp:webkit_storage_browser', | 58 '../webkit/storage_browser.gyp:webkit_storage_browser', |
59 '../webkit/storage_common.gyp:webkit_storage_common', | 59 '../webkit/storage_common.gyp:webkit_storage_common', |
60 '../webkit/webkit_resources.gyp:webkit_resources', | 60 '../webkit/webkit_resources.gyp:webkit_resources', |
61 ], | 61 ], |
62 'include_dirs': [ | 62 'include_dirs': [ |
63 '..', | 63 '..', |
64 '<(INTERMEDIATE_DIR)', | 64 '<(INTERMEDIATE_DIR)', |
65 ], | 65 ], |
66 # This target has header files that include files from sync. Give our | |
Nico
2014/03/07 19:13:00
""that include generated header files…"
maniscalco
2014/03/07 23:44:37
Done.
| |
67 # dependents access to those headers. | |
68 'export_dependent_settings': [ | |
69 '../sync/sync.gyp:sync', | |
70 ], | |
66 'sources': [ | 71 'sources': [ |
67 # All .cc, .h, .m, and .mm files under browser/extensions except for | 72 # All .cc, .h, .m, and .mm files under browser/extensions except for |
68 # tests and mocks. | 73 # tests and mocks. |
69 'browser/apps/app_launch_for_metro_restart_win.cc', | 74 'browser/apps/app_launch_for_metro_restart_win.cc', |
70 'browser/apps/app_launch_for_metro_restart_win.h', | 75 'browser/apps/app_launch_for_metro_restart_win.h', |
71 'browser/apps/app_url_redirector.cc', | 76 'browser/apps/app_url_redirector.cc', |
72 'browser/apps/app_url_redirector.h', | 77 'browser/apps/app_url_redirector.h', |
73 'browser/apps/chrome_apps_client.cc', | 78 'browser/apps/chrome_apps_client.cc', |
74 'browser/apps/chrome_apps_client.h', | 79 'browser/apps/chrome_apps_client.h', |
75 'browser/apps/ephemeral_app_launcher.cc', | 80 'browser/apps/ephemeral_app_launcher.cc', |
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1246 'variables': { | 1251 'variables': { |
1247 'proto_in_dir': 'browser/chromeos/contacts', | 1252 'proto_in_dir': 'browser/chromeos/contacts', |
1248 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1253 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
1249 }, | 1254 }, |
1250 'includes': [ '../build/protoc.gypi' ] | 1255 'includes': [ '../build/protoc.gypi' ] |
1251 }, | 1256 }, |
1252 ], | 1257 ], |
1253 },], # 'chromeos=1' | 1258 },], # 'chromeos=1' |
1254 ], # 'conditions' | 1259 ], # 'conditions' |
1255 } | 1260 } |
OLD | NEW |