OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 'dependencies': [ | 514 'dependencies': [ |
515 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 515 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
516 ], | 516 ], |
517 }], | 517 }], |
518 ['p2p_apis==1', { | 518 ['p2p_apis==1', { |
519 'sources': [ | 519 'sources': [ |
520 '../plugins/ppapi/ppb_transport_impl.cc', | 520 '../plugins/ppapi/ppb_transport_impl.cc', |
521 '../plugins/ppapi/ppb_transport_impl.h', | 521 '../plugins/ppapi/ppb_transport_impl.h', |
522 ], | 522 ], |
523 }], | 523 }], |
| 524 ['OS=="linux" and enable_smooth_scrolling==1', { |
| 525 'defines': [ |
| 526 'ENABLE_SMOOTH_SCROLLING', |
| 527 ], |
| 528 }], |
524 ], | 529 ], |
525 }, | 530 }, |
526 ], | 531 ], |
527 'conditions': [ | 532 'conditions': [ |
528 ['use_third_party_translations==1', { | 533 ['use_third_party_translations==1', { |
529 'targets': [ | 534 'targets': [ |
530 { | 535 { |
531 'target_name': 'inspector_strings', | 536 'target_name': 'inspector_strings', |
532 'type': 'none', | 537 'type': 'none', |
533 'variables': { | 538 'variables': { |
534 'grit_out_dir': '<(PRODUCT_DIR)/resources/inspector/l10n', | 539 'grit_out_dir': '<(PRODUCT_DIR)/resources/inspector/l10n', |
535 }, | 540 }, |
536 'actions': [ | 541 'actions': [ |
537 { | 542 { |
538 'action_name': 'inspector_strings', | 543 'action_name': 'inspector_strings', |
539 'variables': { | 544 'variables': { |
540 'grit_grd_file': 'inspector_strings.grd', | 545 'grit_grd_file': 'inspector_strings.grd', |
541 }, | 546 }, |
542 'includes': [ '../../build/grit_action.gypi' ], | 547 'includes': [ '../../build/grit_action.gypi' ], |
543 }, | 548 }, |
544 ], | 549 ], |
545 'includes': [ '../../build/grit_target.gypi' ], | 550 'includes': [ '../../build/grit_target.gypi' ], |
546 }, | 551 }, |
547 ], | 552 ], |
548 }], | 553 }], |
549 ], | 554 ], |
550 } | 555 } |
OLD | NEW |