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 'includes': [ | 6 'includes': [ |
7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
9 ], | 9 ], |
10 'variables': { | 10 'variables': { |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 'glue/websocketstreamhandle_impl.cc', | 372 'glue/websocketstreamhandle_impl.cc', |
373 'glue/websocketstreamhandle_impl.h', | 373 'glue/websocketstreamhandle_impl.h', |
374 'glue/webthemeengine_impl_win.cc', | 374 'glue/webthemeengine_impl_win.cc', |
375 'glue/weburlloader_impl.cc', | 375 'glue/weburlloader_impl.cc', |
376 'glue/weburlloader_impl.h', | 376 'glue/weburlloader_impl.h', |
377 'glue/window_open_disposition.h', | 377 'glue/window_open_disposition.h', |
378 'glue/window_open_disposition.cc', | 378 'glue/window_open_disposition.cc', |
379 | 379 |
380 # These files used to be built in the webcore target, but moved here | 380 # These files used to be built in the webcore target, but moved here |
381 # since part of glue. | 381 # since part of glue. |
| 382 'extensions/v8/benchmarking_extension.cc', |
| 383 'extensions/v8/benchmarking_extension.h', |
382 'extensions/v8/gc_extension.cc', | 384 'extensions/v8/gc_extension.cc', |
383 'extensions/v8/gc_extension.h', | 385 'extensions/v8/gc_extension.h', |
384 'extensions/v8/gears_extension.cc', | 386 'extensions/v8/gears_extension.cc', |
385 'extensions/v8/gears_extension.h', | 387 'extensions/v8/gears_extension.h', |
| 388 'extensions/v8/heap_profiler_extension.cc', |
| 389 'extensions/v8/heap_profiler_extension.h', |
386 'extensions/v8/interval_extension.cc', | 390 'extensions/v8/interval_extension.cc', |
387 'extensions/v8/interval_extension.h', | 391 'extensions/v8/interval_extension.h', |
388 'extensions/v8/playback_extension.cc', | 392 'extensions/v8/playback_extension.cc', |
389 'extensions/v8/playback_extension.h', | 393 'extensions/v8/playback_extension.h', |
390 'extensions/v8/profiler_extension.cc', | 394 'extensions/v8/profiler_extension.cc', |
391 'extensions/v8/profiler_extension.h', | 395 'extensions/v8/profiler_extension.h', |
392 'extensions/v8/benchmarking_extension.cc', | |
393 'extensions/v8/benchmarking_extension.h', | |
394 | 396 |
395 ], | 397 ], |
396 # When glue is a dependency, it needs to be a hard dependency. | 398 # When glue is a dependency, it needs to be a hard dependency. |
397 # Dependents may rely on files generated by this target or one of its | 399 # Dependents may rely on files generated by this target or one of its |
398 # own hard dependencies. | 400 # own hard dependencies. |
399 'hard_dependency': 1, | 401 'hard_dependency': 1, |
400 'conditions': [ | 402 'conditions': [ |
401 ['OS=="linux" or OS=="freebsd"', { | 403 ['OS=="linux" or OS=="freebsd"', { |
402 'dependencies': [ | 404 'dependencies': [ |
403 '../build/linux/system.gyp:gtk', | 405 '../build/linux/system.gyp:gtk', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 ], | 508 ], |
507 } | 509 } |
508 ], # targets | 510 ], # targets |
509 } | 511 } |
510 | 512 |
511 # Local Variables: | 513 # Local Variables: |
512 # tab-width:2 | 514 # tab-width:2 |
513 # indent-tabs-mode:nil | 515 # indent-tabs-mode:nil |
514 # End: | 516 # End: |
515 # vim: set expandtab tabstop=2 shiftwidth=2: | 517 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |