| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client 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 'common_sources': [ | 8 'common_sources': [ |
| 9 'module_ppapi.cc', | 9 'module_ppapi.cc', |
| 10 'nacl_subprocess.cc', | 10 'nacl_subprocess.cc', |
| 11 'plugin.cc', | 11 'plugin.cc', |
| 12 'pnacl_coordinator.cc', | 12 'pnacl_coordinator.cc', |
| 13 'pnacl_resources.cc', | 13 'pnacl_resources.cc', |
| 14 'pnacl_translate_thread.cc', | 14 'pnacl_translate_thread.cc', |
| 15 'ppapi_entrypoints.cc', | 15 'ppapi_entrypoints.cc', |
| 16 'sel_ldr_launcher_chrome.cc', | 16 'sel_ldr_launcher_chrome.cc', |
| 17 'service_runtime.cc', | 17 'service_runtime.cc', |
| 18 'srpc_client.cc', | 18 'srpc_client.cc', |
| 19 'srpc_params.cc', | 19 'srpc_params.cc', |
| 20 'temporary_file.cc', | 20 'temporary_file.cc', |
| 21 'utility.cc', | 21 'utility.cc', |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 'includes': [ | 24 'includes': [ |
| 25 '../../../../../native_client/build/common.gypi', | 25 '../../../../native_client/build/common.gypi', |
| 26 ], | 26 ], |
| 27 'target_defaults': { | 27 'target_defaults': { |
| 28 'variables': { | 28 'variables': { |
| 29 'target_platform': 'none', | 29 'target_platform': 'none', |
| 30 }, | 30 }, |
| 31 'conditions': [ | 31 'conditions': [ |
| 32 ['OS=="linux"', { | 32 ['OS=="linux"', { |
| 33 'cflags': [ | 33 'cflags': [ |
| 34 '-Wno-long-long', | 34 '-Wno-long-long', |
| 35 ], | 35 ], |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'link_settings': { | 73 'link_settings': { |
| 74 'libraries': [ | 74 'libraries': [ |
| 75 '-lgdi32.lib', | 75 '-lgdi32.lib', |
| 76 '-luser32.lib', | 76 '-luser32.lib', |
| 77 ], | 77 ], |
| 78 }, | 78 }, |
| 79 }], | 79 }], |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 } | 82 } |
| OLD | NEW |