| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 { | 118 { |
| 119 # GN version: //ppapi:ppapi_proxy | 119 # GN version: //ppapi:ppapi_proxy |
| 120 'target_name': 'ppapi_proxy', | 120 'target_name': 'ppapi_proxy', |
| 121 'type': 'static_library', | 121 'type': 'static_library', |
| 122 'variables': { | 122 'variables': { |
| 123 'ppapi_proxy_target': 1, | 123 'ppapi_proxy_target': 1, |
| 124 }, | 124 }, |
| 125 'dependencies': [ | 125 'dependencies': [ |
| 126 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
| 127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 128 '../gin/gin.gyp:gin', |
| 128 '../gpu/gpu.gyp:gles2_implementation', | 129 '../gpu/gpu.gyp:gles2_implementation', |
| 129 '../gpu/gpu.gyp:gpu_ipc', | 130 '../gpu/gpu.gyp:gpu_ipc', |
| 130 '../media/media.gyp:shared_memory_support', | 131 '../media/media.gyp:shared_memory_support', |
| 131 '../ipc/ipc.gyp:ipc', | 132 '../ipc/ipc.gyp:ipc', |
| 132 '../skia/skia.gyp:skia', | 133 '../skia/skia.gyp:skia', |
| 133 '../third_party/icu/icu.gyp:icuuc', | 134 '../third_party/icu/icu.gyp:icuuc', |
| 134 '../third_party/icu/icu.gyp:icui18n', | 135 '../third_party/icu/icu.gyp:icui18n', |
| 135 '../ui/events/events.gyp:events_base', | 136 '../ui/events/events.gyp:events_base', |
| 136 '../ui/surface/surface.gyp:surface', | 137 '../ui/surface/surface.gyp:surface', |
| 137 'ppapi.gyp:ppapi_c', | 138 'ppapi.gyp:ppapi_c', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 168 'type': 'shared_library', | 169 'type': 'shared_library', |
| 169 'variables': { | 170 'variables': { |
| 170 # Setting both variables means we pull in the sources from both | 171 # Setting both variables means we pull in the sources from both |
| 171 # ppapi_ipc.gypi and ppapi_proxy.gypi. | 172 # ppapi_ipc.gypi and ppapi_proxy.gypi. |
| 172 'ppapi_ipc_target': 1, | 173 'ppapi_ipc_target': 1, |
| 173 'ppapi_proxy_target': 1, | 174 'ppapi_proxy_target': 1, |
| 174 }, | 175 }, |
| 175 'dependencies': [ | 176 'dependencies': [ |
| 176 '../base/base.gyp:base', | 177 '../base/base.gyp:base', |
| 177 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 178 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 179 '../gin/gin.gyp:gin', |
| 178 '../gpu/gpu.gyp:gles2_implementation', | 180 '../gpu/gpu.gyp:gles2_implementation', |
| 179 '../gpu/gpu.gyp:gpu_ipc', | 181 '../gpu/gpu.gyp:gpu_ipc', |
| 180 '../media/media.gyp:shared_memory_support', | 182 '../media/media.gyp:shared_memory_support', |
| 181 '../ipc/ipc.gyp:ipc', | 183 '../ipc/ipc.gyp:ipc', |
| 182 '../skia/skia.gyp:skia', | 184 '../skia/skia.gyp:skia', |
| 183 '../third_party/icu/icu.gyp:icuuc', | 185 '../third_party/icu/icu.gyp:icuuc', |
| 184 '../third_party/icu/icu.gyp:icui18n', | 186 '../third_party/icu/icu.gyp:icui18n', |
| 185 '../ui/events/events.gyp:events_base', | 187 '../ui/events/events.gyp:events_base', |
| 186 '../ui/events/ipc/events_ipc.gyp:events_ipc', | 188 '../ui/events/ipc/events_ipc.gyp:events_ipc', |
| 187 '../ui/surface/surface.gyp:surface', | 189 '../ui/surface/surface.gyp:surface', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 }, | 285 }, |
| 284 'configurations': { | 286 'configurations': { |
| 285 'Common_Base': { | 287 'Common_Base': { |
| 286 'msvs_target_platform': 'x64', | 288 'msvs_target_platform': 'x64', |
| 287 }, | 289 }, |
| 288 }, | 290 }, |
| 289 }], | 291 }], |
| 290 }], | 292 }], |
| 291 ], | 293 ], |
| 292 } | 294 } |
| OLD | NEW |