Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: gin/gin.gyp

Issue 172263002: Move WebAXObjectProxy and AccessibleController from CppBoundClass to gin::Wrappable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Bug fix: Clear the callbacks when reset or destroyed Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'per_isolate_data.cc', 53 'per_isolate_data.cc',
54 'per_isolate_data.h', 54 'per_isolate_data.h',
55 'public/context_holder.h', 55 'public/context_holder.h',
56 'public/gin_embedders.h', 56 'public/gin_embedders.h',
57 'public/isolate_holder.h', 57 'public/isolate_holder.h',
58 'public/wrapper_info.h', 58 'public/wrapper_info.h',
59 'runner.cc', 59 'runner.cc',
60 'runner.h', 60 'runner.h',
61 'try_catch.cc', 61 'try_catch.cc',
62 'try_catch.h', 62 'try_catch.h',
63 'unsafe_persistent.h',
63 'wrappable.cc', 64 'wrappable.cc',
64 'wrappable.h', 65 'wrappable.h',
65 'wrapper_info.cc', 66 'wrapper_info.cc',
66 ], 67 ],
67 }, 68 },
68 { 69 {
69 'target_name': 'gin_shell', 70 'target_name': 'gin_shell',
70 'type': 'executable', 71 'type': 'executable',
71 'dependencies': [ 72 'dependencies': [
72 '../base/base.gyp:base', 73 '../base/base.gyp:base',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'converter_unittest.cc', 117 'converter_unittest.cc',
117 'modules/timer_unittest.cc', 118 'modules/timer_unittest.cc',
118 'test/run_all_unittests.cc', 119 'test/run_all_unittests.cc',
119 'test/run_js_tests.cc', 120 'test/run_js_tests.cc',
120 'runner_unittest.cc', 121 'runner_unittest.cc',
121 'wrappable_unittest.cc', 122 'wrappable_unittest.cc',
122 ], 123 ],
123 }, 124 },
124 ], 125 ],
125 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698