| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'feature_defines': [ | 7 'feature_defines': [ |
| 8 'ENABLE_CHANNEL_MESSAGING=1', | 8 'ENABLE_CHANNEL_MESSAGING=1', |
| 9 'ENABLE_DATABASE=1', | 9 'ENABLE_DATABASE=1', |
| 10 'ENABLE_DATAGRID=0', | 10 'ENABLE_DATAGRID=0', |
| (...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1285 }, | 1285 }, |
| 1286 ], | 1286 ], |
| 1287 'include_dirs': [ | 1287 'include_dirs': [ |
| 1288 '<(INTERMEDIATE_DIR)', | 1288 '<(INTERMEDIATE_DIR)', |
| 1289 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 1289 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 1290 ], | 1290 ], |
| 1291 'sources': [ | 1291 'sources': [ |
| 1292 # This list contains all .h, .cc, and .mm files in glue except for | 1292 # This list contains all .h, .cc, and .mm files in glue except for |
| 1293 # those in the test subdirectory and those with unittest in in their | 1293 # those in the test subdirectory and those with unittest in in their |
| 1294 # names. | 1294 # names. |
| 1295 'glue/devtools/devtools_rpc.cc', | |
| 1296 'glue/devtools/devtools_rpc.h', | 1295 'glue/devtools/devtools_rpc.h', |
| 1297 'glue/devtools/devtools_rpc_js.h', | 1296 'glue/devtools/devtools_rpc_js.h', |
| 1298 'glue/devtools/bound_object.cc', | 1297 'glue/devtools/bound_object.cc', |
| 1299 'glue/devtools/bound_object.h', | 1298 'glue/devtools/bound_object.h', |
| 1300 'glue/devtools/debugger_agent.h', | 1299 'glue/devtools/debugger_agent.h', |
| 1301 'glue/devtools/debugger_agent_impl.cc', | 1300 'glue/devtools/debugger_agent_impl.cc', |
| 1302 'glue/devtools/debugger_agent_impl.h', | 1301 'glue/devtools/debugger_agent_impl.h', |
| 1303 'glue/devtools/debugger_agent_manager.cc', | 1302 'glue/devtools/debugger_agent_manager.cc', |
| 1304 'glue/devtools/debugger_agent_manager.h', | 1303 'glue/devtools/debugger_agent_manager.h', |
| 1305 'glue/devtools/tools_agent.h', | 1304 'glue/devtools/tools_agent.h', |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 }, | 1644 }, |
| 1646 ], | 1645 ], |
| 1647 'conditions': [ | 1646 'conditions': [ |
| 1648 ['OS=="win"', { | 1647 ['OS=="win"', { |
| 1649 'dependencies': ['../build/win/system.gyp:cygwin'], | 1648 'dependencies': ['../build/win/system.gyp:cygwin'], |
| 1650 }], | 1649 }], |
| 1651 ], | 1650 ], |
| 1652 }, | 1651 }, |
| 1653 ], | 1652 ], |
| 1654 } | 1653 } |
| OLD | NEW |