| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'chromium_code': 1, | 3 'chromium_code': 1, |
| 4 }, | 4 }, |
| 5 'includes': [ | 5 'includes': [ |
| 6 '../../build/common_untrusted.gypi', | 6 '../../build/common_untrusted.gypi', |
| 7 ], | 7 ], |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 9 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'latency_info_nacl', | 12 'target_name': 'latency_info_nacl', |
| 13 'type': '<(component)', | 13 'type': 'none', |
| 14 'defines': [ | 14 'defines': [ |
| 15 'EVENTS_BASE_IMPLEMENTATION', |
| 15 'EVENTS_IMPLEMENTATION', | 16 'EVENTS_IMPLEMENTATION', |
| 16 ], | 17 ], |
| 17 'include_dirs': [ | 18 'include_dirs': [ |
| 18 '../..', | 19 '../..', |
| 19 ], | 20 ], |
| 20 'dependencies': [ | 21 'dependencies': [ |
| 21 '<(DEPTH)/base/base_nacl.gyp:base_nacl', | 22 '<(DEPTH)/base/base_nacl.gyp:base_nacl', |
| 22 '<(DEPTH)/ipc/ipc_nacl.gyp:ipc_nacl', | 23 '<(DEPTH)/ipc/ipc_nacl.gyp:ipc_nacl', |
| 23 '<(DEPTH)/native_client/tools.gyp:prep_toolchain' | 24 '<(DEPTH)/native_client/tools.gyp:prep_toolchain' |
| 24 ], | 25 ], |
| 25 'variables': { | 26 'variables': { |
| 26 'nacl_untrusted_build': 1, | 27 'nacl_untrusted_build': 1, |
| 27 'nlib_target': 'liblatency_info_nacl.a', | 28 'nlib_target': 'liblatency_info_nacl.a', |
| 28 'build_glibc': 0, | 29 'build_glibc': 0, |
| 29 'build_newlib': 0, | 30 'build_newlib': 0, |
| 30 'build_irt': 1, | 31 'build_irt': 1, |
| 31 }, | 32 }, |
| 32 'sources': [ | 33 'sources': [ |
| 33 'latency_info.cc', | 34 'latency_info.cc', |
| 34 'latency_info.h', | 35 'latency_info.h', |
| 35 'ipc/latency_info_param_traits.cc', | 36 'ipc/latency_info_param_traits.cc', |
| 36 'ipc/latency_info_param_traits.h', | 37 'ipc/latency_info_param_traits.h', |
| 37 ], | 38 ], |
| 38 }, | 39 }, |
| 39 ], | 40 ], |
| 40 }], | 41 }], |
| 42 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', { |
| 43 'targets': [ |
| 44 { |
| 45 'target_name': 'latency_info_nacl_win64', |
| 46 'type' : '<(component)', |
| 47 'variables': { |
| 48 'nacl_win64_target': 1, |
| 49 }, |
| 50 'dependencies': [ |
| 51 '<(DEPTH)/base/base.gyp:base_win64', |
| 52 '<(DEPTH)/ipc/ipc.gyp:ipc_win64', |
| 53 ], |
| 54 'defines': [ |
| 55 'EVENTS_BASE_IMPLEMENTATION', |
| 56 'EVENTS_IMPLEMENTATION', |
| 57 '<@(nacl_win64_defines)', |
| 58 ], |
| 59 'include_dirs': [ |
| 60 '../..', |
| 61 ], |
| 62 'sources': [ |
| 63 'latency_info.cc', |
| 64 'latency_info.h', |
| 65 'ipc/latency_info_param_traits.cc', |
| 66 'ipc/latency_info_param_traits.h', |
| 67 ], |
| 68 'configurations': { |
| 69 'Common_Base': { |
| 70 'msvs_target_platform': 'x64', |
| 71 }, |
| 72 }, |
| 73 }, |
| 74 ], |
| 75 }], |
| 41 ], | 76 ], |
| 42 } | 77 } |
| 78 |
| OLD | NEW |