| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'browser_chromeos', | 9 'target_name': 'browser_chromeos', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 '../components/components.gyp:cloud_policy_proto', | 53 '../components/components.gyp:cloud_policy_proto', |
| 54 '../components/components.gyp:onc_component', | 54 '../components/components.gyp:onc_component', |
| 55 '../components/components.gyp:pairing', | 55 '../components/components.gyp:pairing', |
| 56 '../components/components.gyp:policy', | 56 '../components/components.gyp:policy', |
| 57 # This depends directly on the variations target, rather than just | 57 # This depends directly on the variations target, rather than just |
| 58 # transitively via the common target because the proto sources need to | 58 # transitively via the common target because the proto sources need to |
| 59 # be generated before code in this target can start building. | 59 # be generated before code in this target can start building. |
| 60 '../components/components.gyp:variations', | 60 '../components/components.gyp:variations', |
| 61 '../components/components.gyp:variations_http_provider', | 61 '../components/components.gyp:variations_http_provider', |
| 62 '../components/components_strings.gyp:components_strings', | 62 '../components/components_strings.gyp:components_strings', |
| 63 '../content/app/resources/content_resources.gyp:content_resources', |
| 63 '../content/content.gyp:content_browser', | 64 '../content/content.gyp:content_browser', |
| 64 '../content/content.gyp:content_common', | 65 '../content/content.gyp:content_common', |
| 65 '../crypto/crypto.gyp:crypto', | 66 '../crypto/crypto.gyp:crypto', |
| 66 '../dbus/dbus.gyp:dbus', | 67 '../dbus/dbus.gyp:dbus', |
| 67 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 68 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
| 68 '../device/hid/hid.gyp:device_hid', | 69 '../device/hid/hid.gyp:device_hid', |
| 69 '../media/media.gyp:media', | 70 '../media/media.gyp:media', |
| 70 '../net/net.gyp:net', | 71 '../net/net.gyp:net', |
| 71 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin | 72 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin |
| 72 '../skia/skia.gyp:skia', | 73 '../skia/skia.gyp:skia', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 97 '../ui/resources/ui_resources.gyp:ui_resources', | 98 '../ui/resources/ui_resources.gyp:ui_resources', |
| 98 '../ui/strings/ui_strings.gyp:ui_strings', | 99 '../ui/strings/ui_strings.gyp:ui_strings', |
| 99 '../ui/surface/surface.gyp:surface', | 100 '../ui/surface/surface.gyp:surface', |
| 100 '../ui/views/controls/webview/webview.gyp:webview', | 101 '../ui/views/controls/webview/webview.gyp:webview', |
| 101 '../ui/views/controls/webview/webview.gyp:webview', | 102 '../ui/views/controls/webview/webview.gyp:webview', |
| 102 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', | 103 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', |
| 103 '../url/url.gyp:url_lib', | 104 '../url/url.gyp:url_lib', |
| 104 '../v8/tools/gyp/v8.gyp:v8', | 105 '../v8/tools/gyp/v8.gyp:v8', |
| 105 '../webkit/storage_browser.gyp:webkit_storage_browser', | 106 '../webkit/storage_browser.gyp:webkit_storage_browser', |
| 106 '../webkit/storage_common.gyp:webkit_storage_common', | 107 '../webkit/storage_common.gyp:webkit_storage_common', |
| 107 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources', | |
| 108 'chrome_resources.gyp:chrome_strings', | 108 'chrome_resources.gyp:chrome_strings', |
| 109 ], | 109 ], |
| 110 'defines': [ | 110 'defines': [ |
| 111 '<@(nacl_defines)', | 111 '<@(nacl_defines)', |
| 112 ], | 112 ], |
| 113 'direct_dependent_settings': { | 113 'direct_dependent_settings': { |
| 114 'defines': [ | 114 'defines': [ |
| 115 '<@(nacl_defines)', | 115 '<@(nacl_defines)', |
| 116 ], | 116 ], |
| 117 }, | 117 }, |
| (...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 'browser/chromeos/attestation/attestation_signed_data.proto', | 1192 'browser/chromeos/attestation/attestation_signed_data.proto', |
| 1193 ], | 1193 ], |
| 1194 'variables': { | 1194 'variables': { |
| 1195 'proto_in_dir': 'browser/chromeos/attestation', | 1195 'proto_in_dir': 'browser/chromeos/attestation', |
| 1196 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1196 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
| 1197 }, | 1197 }, |
| 1198 'includes': [ '../build/protoc.gypi' ] | 1198 'includes': [ '../build/protoc.gypi' ] |
| 1199 }, | 1199 }, |
| 1200 ], | 1200 ], |
| 1201 } | 1201 } |
| OLD | NEW |