Changeset 63676 in webkit


Ignore:
Timestamp:
Jul 19, 2010 10:26:17 AM (14 years ago)
Author:
tony@chromium.org
Message:

2010-07-19 Tony Chang <tony@chromium.org>

Reviewed by Kent Tamura.

[chromium] refactor npapi plugin copy step
https://bugs.webkit.org/show_bug.cgi?id=42493

This is to avoid duplicate copy rules in the Linux make build.

  • WebKit.gyp:
  • DEPS: 52483:52869
Location:
trunk/WebKit/chromium
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r63669 r63676  
     12010-07-19  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [chromium] refactor npapi plugin copy step
     6        https://bugs.webkit.org/show_bug.cgi?id=42493
     7
     8        This is to avoid duplicate copy rules in the Linux make build.
     9
     10        * WebKit.gyp:
     11        * DEPS: 52483:52869
     12
    1132010-07-19  Ilya Tikhonovsky  <loislo@chromium.org>
    214
  • trunk/WebKit/chromium/DEPS

    r63555 r63676  
    3333vars = {
    3434  'chromium_svn': 'http://src.chromium.org/svn/trunk/src',
    35   'chromium_rev': '52483',
     35  'chromium_rev': '52869',
    3636}
    3737
     
    9090  'media':
    9191    Var('chromium_svn')+'/media@'+Var('chromium_rev'),
     92  'printing':
     93    Var('chromium_svn')+'/printing@'+Var('chromium_rev'),
    9294  'third_party/angle':  # needed by the gpu process
    9395    From('chromium_deps', 'src/third_party/angle'),
  • trunk/WebKit/chromium/WebKit.gyp

    r63516 r63676  
    732732                '../../JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp:wtf_config',
    733733                '<(chromium_src_dir)/third_party/icu/icu.gyp:icuuc',
    734                 '<(chromium_src_dir)/webkit/support/webkit_support.gyp:npapi_layout_test_plugin',
     734                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:copy_npapi_layout_test_plugin',
    735735                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_support',
    736736                '<(chromium_src_dir)/gpu/gpu.gyp:gles2_c_lib'
     
    778778                        'destination': '<(PRODUCT_DIR)',
    779779                        'files': ['<(ahem_path)'],
    780                     }, {
    781                         # This should really be done in the 'npapi_layout_test_plugin'
    782                         # target, but the current VS generator handles 'copies'
    783                         # settings as AdditionalDependencies, which means that
    784                         # when it's over there, it tries to do the copy *before*
    785                         # the file is built, instead of after.  We work around this
    786                         # by attaching the copy here, since it depends on that
    787                         # target.
    788                         'destination': '<(PRODUCT_DIR)/plugins',
    789                         'files': ['<(PRODUCT_DIR)/npapi_layout_test_plugin.dll'],
    790780                    }],
    791781                },{ # OS!="win"
     
    832822                        '<(SHARED_INTERMEDIATE_DIR)/webkit/textAreaResizeCorner.png',
    833823                    ],
    834                     'copies': [{
    835                         'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Contents/PlugIns/',
    836                         'files': ['<(PRODUCT_DIR)/TestNetscapePlugIn.plugin/'],
    837                     }],
    838824                },{ # OS!="mac"
    839825                    'sources/': [
     
    850836                            '<(INTERMEDIATE_DIR)/repack/DumpRenderTree.pak',
    851837                        ]
    852                     }, {
    853                         'destination': '<(PRODUCT_DIR)/plugins',
    854                         'files': ['<(PRODUCT_DIR)/libnpapi_layout_test_plugin.so'],
    855838                    }],
    856839                },{ # OS!="linux" and OS!="freebsd" and OS!="openbsd" and OS!="solaris"
Note: See TracChangeset for help on using the changeset viewer.