Chromium Code Reviews| Index: ui/events/ipc/events_ipc.gyp |
| diff --git a/athena/main/athena_main.gyp b/ui/events/ipc/events_ipc.gyp |
| similarity index 54% |
| copy from athena/main/athena_main.gyp |
| copy to ui/events/ipc/events_ipc.gyp |
| index 366e6bca00fb5f3bc201b18d38b7fbd2df67f615..dd6433d33a678ca93bdd9b1f381f8f885c7ee031 100644 |
| --- a/athena/main/athena_main.gyp |
| +++ b/ui/events/ipc/events_ipc.gyp |
| @@ -7,18 +7,23 @@ |
| 'chromium_code': 1, |
| }, |
| 'targets': [ |
| - { |
| - 'target_name': 'athena_main', |
| - 'type': 'executable', |
| + { |
| + 'target_name': 'events_ipc', |
| + 'type': '<(component)', |
| 'dependencies': [ |
| - '../../apps/shell/app_shell.gyp:app_shell_lib', |
| + '<(DEPTH)/base/base.gyp:base', |
| + '<(DEPTH)/ipc/ipc.gyp:ipc', |
|
sadrul
2014/05/20 17:18:32
does this need a dep on events?
Yufeng Shen (Slow to review)
2014/05/20 18:32:34
It does not actually. The param traits only need t
|
| + ], |
| + 'defines': [ |
| + 'EVENTS_IMPLEMENTATION', |
| ], |
| 'include_dirs': [ |
| '../..', |
| ], |
| 'sources': [ |
| - 'athena_main.cc', |
| + 'latency_info_param_traits.cc', |
| + 'latency_info_param_traits.h', |
| ], |
| }, |
| - ], # targets |
| + ], |
| } |