Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'dom4_keycode_converter', | 11 'target_name': 'dom4_keycode_converter', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
| 15 ], | 15 ], |
| 16 'sources': [ | 16 'sources': [ |
| 17 'keycodes/dom4/keycode_converter.cc', | 17 'keycodes/dom4/keycode_converter.cc', |
| 18 'keycodes/dom4/keycode_converter.h', | 18 'keycodes/dom4/keycode_converter.h', |
| 19 'keycodes/dom4/keycode_converter_data.h', | 19 'keycodes/dom4/keycode_converter_data.h', |
| 20 ], | 20 ], |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 'target_name': 'events_ipc', | |
|
sadrul
2014/05/16 14:49:26
Can this be in its own file in events/ipc/events_i
Yufeng Shen (Slow to review)
2014/05/16 17:13:13
Done.
| |
| 24 'type': '<(component)', | |
| 25 'dependencies': [ | |
| 26 '<(DEPTH)/base/base.gyp:base', | |
| 27 '<(DEPTH)/ipc/ipc.gyp:ipc', | |
| 28 ], | |
| 29 'defines': [ | |
| 30 'EVENTS_IMPLEMENTATION', | |
| 31 ], | |
| 32 'include_dirs': [ | |
| 33 '../..', | |
| 34 ], | |
| 35 'sources': [ | |
| 36 'ipc/latency_info_param_traits.cc', | |
| 37 'ipc/latency_info_param_traits.h', | |
| 38 ], | |
| 39 }, | |
| 40 { | |
| 23 'target_name': 'events_base', | 41 'target_name': 'events_base', |
| 24 'type': '<(component)', | 42 'type': '<(component)', |
| 25 'dependencies': [ | 43 'dependencies': [ |
| 26 '<(DEPTH)/base/base.gyp:base', | 44 '<(DEPTH)/base/base.gyp:base', |
| 27 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | 45 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', |
| 28 '<(DEPTH)/skia/skia.gyp:skia', | 46 '<(DEPTH)/skia/skia.gyp:skia', |
| 29 '../gfx/gfx.gyp:gfx', | 47 '../gfx/gfx.gyp:gfx', |
| 30 '../gfx/gfx.gyp:gfx_geometry', | 48 '../gfx/gfx.gyp:gfx_geometry', |
| 31 'dom4_keycode_converter', | 49 'dom4_keycode_converter', |
| 32 ], | 50 ], |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 ], | 336 ], |
| 319 'variables': { | 337 'variables': { |
| 320 'test_suite_name': 'events_unittests', | 338 'test_suite_name': 'events_unittests', |
| 321 }, | 339 }, |
| 322 'includes': [ '../../build/apk_test.gypi' ], | 340 'includes': [ '../../build/apk_test.gypi' ], |
| 323 }, | 341 }, |
| 324 ], | 342 ], |
| 325 }], | 343 }], |
| 326 ], | 344 ], |
| 327 } | 345 } |
| OLD | NEW |