diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:00:37 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:00:37 +0000 |
commit | b9f4c684a708d9d7e2f8076beb77b3382ae75667 (patch) | |
tree | 356760b8dc54a50c46d8af2fbc0414138331164a /components/web_modal.gypi | |
parent | 2501ca5dbd5f1a495b306937c7fed7c32698c943 (diff) | |
download | chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.zip chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.tar.gz chromium_src-b9f4c684a708d9d7e2f8076beb77b3382ae75667.tar.bz2 |
Add components and CLD to GN build.
New components:
- rappor
- data_reduction_proxy
- captive_portal
- translate
- usb_service
- web_modal
Removes the _IMPLEMENTATION define for web_modal. It is unused (it is a static library, not a component).
Adds third_party/cld and third_party/cld_2 BUILD files.
Separates out the include dir setting of "//" and the root gen directory so. cld_2 needed to not have this due to base file name conflicts.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/382663002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/web_modal.gypi')
-rw-r--r-- | components/web_modal.gypi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/web_modal.gypi b/components/web_modal.gypi index 356cb7e..2502803 100644 --- a/components/web_modal.gypi +++ b/components/web_modal.gypi @@ -5,6 +5,7 @@ { 'targets': [ { + # GN version: //components/web_modal 'target_name': 'web_modal', 'type': 'static_library', 'include_dirs': [ @@ -15,10 +16,8 @@ '../content/content.gyp:content_browser', '../skia/skia.gyp:skia', ], - 'defines': [ - 'WEB_MODAL_IMPLEMENTATION', - ], 'sources': [ + # Note: sources list duplicated in GN build. 'web_modal/modal_dialog_host.cc', 'web_modal/modal_dialog_host.h', 'web_modal/native_web_contents_modal_dialog.h', @@ -32,12 +31,14 @@ ], }, { + # GN version: //components/web_modal:test_support 'target_name': 'web_modal_test_support', 'type': 'static_library', 'dependencies': [ 'web_modal', ], 'sources': [ + # Note: sources list duplicated in GN build. 'web_modal/test_web_contents_modal_dialog_host.cc', 'web_modal/test_web_contents_modal_dialog_host.h', 'web_modal/test_web_contents_modal_dialog_manager_delegate.cc', |