Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 120 'dependencies': [ | 120 'dependencies': [ |
| 121 '../base/base.gyp:base', | 121 '../base/base.gyp:base', |
| 122 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', | 122 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', |
| 123 '../gpu/gpu.gyp:gles2_implementation', | 123 '../gpu/gpu.gyp:gles2_implementation', |
| 124 '../gpu/gpu.gyp:gpu_ipc', | 124 '../gpu/gpu.gyp:gpu_ipc', |
| 125 '../media/media.gyp:shared_memory_support', | 125 '../media/media.gyp:shared_memory_support', |
| 126 '../ipc/ipc.gyp:ipc', | 126 '../ipc/ipc.gyp:ipc', |
| 127 '../skia/skia.gyp:skia', | 127 '../skia/skia.gyp:skia', |
| 128 '../third_party/icu/icu.gyp:icuuc', | 128 '../third_party/icu/icu.gyp:icuuc', |
| 129 '../third_party/icu/icu.gyp:icui18n', | 129 '../third_party/icu/icu.gyp:icui18n', |
| 130 # websocket_resource.cc uses enums from blink's WebSocket.h | |
| 131 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', | |
|
bbudge
2014/03/17 22:17:41
Maybe a TODO(bbudge) to add a conversion fn in the
| |
| 130 '../ui/surface/surface.gyp:surface', | 132 '../ui/surface/surface.gyp:surface', |
| 131 'ppapi.gyp:ppapi_c', | 133 'ppapi.gyp:ppapi_c', |
| 132 'ppapi_shared', | 134 'ppapi_shared', |
| 133 'ppapi_ipc', | 135 'ppapi_ipc', |
| 134 ], | 136 ], |
| 135 'all_dependent_settings': { | 137 'all_dependent_settings': { |
| 136 'include_dirs': [ | 138 'include_dirs': [ |
| 137 '..', | 139 '..', |
| 138 ], | 140 ], |
| 139 }, | 141 }, |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 168 'dependencies': [ | 170 'dependencies': [ |
| 169 '../base/base.gyp:base', | 171 '../base/base.gyp:base', |
| 170 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', | 172 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', |
| 171 '../gpu/gpu.gyp:gles2_implementation', | 173 '../gpu/gpu.gyp:gles2_implementation', |
| 172 '../gpu/gpu.gyp:gpu_ipc', | 174 '../gpu/gpu.gyp:gpu_ipc', |
| 173 '../media/media.gyp:shared_memory_support', | 175 '../media/media.gyp:shared_memory_support', |
| 174 '../ipc/ipc.gyp:ipc', | 176 '../ipc/ipc.gyp:ipc', |
| 175 '../skia/skia.gyp:skia', | 177 '../skia/skia.gyp:skia', |
| 176 '../third_party/icu/icu.gyp:icuuc', | 178 '../third_party/icu/icu.gyp:icuuc', |
| 177 '../third_party/icu/icu.gyp:icui18n', | 179 '../third_party/icu/icu.gyp:icui18n', |
| 180 # websocket_resource.cc uses enums from blink's WebSocket.h | |
| 181 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', | |
| 178 '../ui/surface/surface.gyp:surface', | 182 '../ui/surface/surface.gyp:surface', |
| 179 'ppapi.gyp:ppapi_c', | 183 'ppapi.gyp:ppapi_c', |
| 180 'ppapi_shared', | 184 'ppapi_shared', |
| 181 ], | 185 ], |
| 182 'all_dependent_settings': { | 186 'all_dependent_settings': { |
| 183 'include_dirs': [ | 187 'include_dirs': [ |
| 184 '..', | 188 '..', |
| 185 ], | 189 ], |
| 186 }, | 190 }, |
| 187 # Disable c4267 warnings until we fix size_t to int truncations. | 191 # Disable c4267 warnings until we fix size_t to int truncations. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 267 }, | 271 }, |
| 268 'configurations': { | 272 'configurations': { |
| 269 'Common_Base': { | 273 'Common_Base': { |
| 270 'msvs_target_platform': 'x64', | 274 'msvs_target_platform': 'x64', |
| 271 }, | 275 }, |
| 272 }, | 276 }, |
| 273 }], | 277 }], |
| 274 }], | 278 }], |
| 275 ], | 279 ], |
| 276 } | 280 } |
| OLD | NEW |