| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../jingle/jingle.gyp:jingle_glue', | 7 '../jingle/jingle.gyp:jingle_glue', |
| 8 '../net/net.gyp:net', | 8 '../net/net.gyp:net', |
| 9 '../ppapi/ppapi_internal.gyp:ppapi_host', | 9 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 'renderer/web_ui_bindings.cc', | 257 'renderer/web_ui_bindings.cc', |
| 258 'renderer/web_ui_bindings.h', | 258 'renderer/web_ui_bindings.h', |
| 259 'renderer/webplugin_delegate_proxy.cc', | 259 'renderer/webplugin_delegate_proxy.cc', |
| 260 'renderer/webplugin_delegate_proxy.h', | 260 'renderer/webplugin_delegate_proxy.h', |
| 261 'renderer/websharedworker_proxy.cc', | 261 'renderer/websharedworker_proxy.cc', |
| 262 'renderer/websharedworker_proxy.h', | 262 'renderer/websharedworker_proxy.h', |
| 263 'renderer/websharedworkerrepository_impl.cc', | 263 'renderer/websharedworkerrepository_impl.cc', |
| 264 'renderer/websharedworkerrepository_impl.h', | 264 'renderer/websharedworkerrepository_impl.h', |
| 265 ], | 265 ], |
| 266 'conditions': [ | 266 'conditions': [ |
| 267 ['notifications==0', { |
| 268 'sources!': [ |
| 269 'renderer/notification_provider.cc', |
| 270 'renderer/active_notification_tracker.cc', |
| 271 ], |
| 272 }], |
| 273 ['input_speech==0', { |
| 274 'sources!': [ |
| 275 'renderer/input_tag_speech_dispatcher.cc', |
| 276 'renderer/input_tag_speech_dispatcher.h', |
| 277 'renderer/speech_recognition_dispatcher.cc', |
| 278 'renderer/speech_recognition_dispatcher.h', |
| 279 ] |
| 280 }], |
| 267 ['toolkit_uses_gtk == 1', { | 281 ['toolkit_uses_gtk == 1', { |
| 268 'conditions': [ | |
| 269 ['input_speech==0', { | |
| 270 'sources!': [ | |
| 271 'renderer/input_tag_speech_dispatcher.cc', | |
| 272 'renderer/input_tag_speech_dispatcher.h', | |
| 273 'renderer/speech_recognition_dispatcher.cc', | |
| 274 'renderer/speech_recognition_dispatcher.h', | |
| 275 ] | |
| 276 }], | |
| 277 ['notifications==0', { | |
| 278 'sources!': [ | |
| 279 'renderer/notification_provider.cc', | |
| 280 'renderer/active_notification_tracker.cc', | |
| 281 ], | |
| 282 }], | |
| 283 ], | |
| 284 'dependencies': [ | 282 'dependencies': [ |
| 285 '../build/linux/system.gyp:gtk', | 283 '../build/linux/system.gyp:gtk', |
| 286 ], | 284 ], |
| 287 }], | 285 }], |
| 288 ['OS=="mac"', { | 286 ['OS=="mac"', { |
| 289 'sources!': [ | 287 'sources!': [ |
| 290 'common/process_watcher_posix.cc', | 288 'common/process_watcher_posix.cc', |
| 291 ], | 289 ], |
| 292 }], | 290 }], |
| 293 ['OS=="win" and win_use_allocator_shim==1', { | 291 ['OS=="win" and win_use_allocator_shim==1', { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 }], | 357 }], |
| 360 ], | 358 ], |
| 361 'target_conditions': [ | 359 'target_conditions': [ |
| 362 ['OS=="android"', { | 360 ['OS=="android"', { |
| 363 'sources/': [ | 361 'sources/': [ |
| 364 ['include', '^renderer/render_view_linux\\.cc$'], | 362 ['include', '^renderer/render_view_linux\\.cc$'], |
| 365 ], | 363 ], |
| 366 }], | 364 }], |
| 367 ], | 365 ], |
| 368 } | 366 } |
| OLD | NEW |