| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'ppapi_c<(nacl_ppapi_library_suffix)', | 8 'target_name': 'ppapi_c<(nacl_ppapi_library_suffix)', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 'cpp/dev/scriptable_object_deprecated.h', | 245 'cpp/dev/scriptable_object_deprecated.h', |
| 246 'cpp/dev/scriptable_object_deprecated.cc', | 246 'cpp/dev/scriptable_object_deprecated.cc', |
| 247 | 247 |
| 248 # Private interfaces. | 248 # Private interfaces. |
| 249 'cpp/private/flash_fullscreen.cc', | 249 'cpp/private/flash_fullscreen.cc', |
| 250 'cpp/private/flash_fullscreen.h', | 250 'cpp/private/flash_fullscreen.h', |
| 251 'cpp/private/instance_private.cc', | 251 'cpp/private/instance_private.cc', |
| 252 'cpp/private/instance_private.h', | 252 'cpp/private/instance_private.h', |
| 253 'cpp/private/var_private.cc', | 253 'cpp/private/var_private.cc', |
| 254 'cpp/private/var_private.h', | 254 'cpp/private/var_private.h', |
| 255 |
| 256 # Trusted interfaces. |
| 257 'cpp/trusted/file_chooser_trusted.cc', |
| 258 'cpp/trusted/file_chooser_trusted.h', |
| 255 ], | 259 ], |
| 256 'conditions': [ | 260 'conditions': [ |
| 257 ['OS=="win"', { | 261 ['OS=="win"', { |
| 258 'msvs_settings': { | 262 'msvs_settings': { |
| 259 'VCCLCompilerTool': { | 263 'VCCLCompilerTool': { |
| 260 'AdditionalOptions': ['/we4244'], # implicit conversion, possible
loss of data | 264 'AdditionalOptions': ['/we4244'], # implicit conversion, possible
loss of data |
| 261 }, | 265 }, |
| 262 }, | 266 }, |
| 263 }], | 267 }], |
| 264 ['OS=="linux"', { | 268 ['OS=="linux"', { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 }], | 301 }], |
| 298 ['OS=="mac"', { | 302 ['OS=="mac"', { |
| 299 'xcode_settings': { | 303 'xcode_settings': { |
| 300 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 304 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
| 301 }, | 305 }, |
| 302 }] | 306 }] |
| 303 ], | 307 ], |
| 304 }, | 308 }, |
| 305 ], | 309 ], |
| 306 } | 310 } |
| OLD | NEW |